.bcsf-4496efc0-wrapper {
    width: 100%;
    font-family: inherit;
}

/* Controls */
.bcsf-4496efc0-controls {
    margin-bottom: 24px;
}
.bcsf-4496efc0-controls-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.bcsf-4496efc0-controls-row:last-child {
    margin-bottom: 0;
}
.bcsf-4496efc0-controls-row--side {
    flex-wrap: wrap;
}

/* Type Switcher */
.bcsf-4496efc0-type-switcher {
    display: flex;
    gap: 4px;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
}
.bcsf-4496efc0-type-btn {
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
    background: transparent;
    color: #333;
}
.bcsf-4496efc0-type-btn.active {
    background: #4361ee;
    color: #fff;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.3);
}
.bcsf-4496efc0-type-btn:hover:not(.active) {
    background: #e0e0e0;
}

/* Search */
.bcsf-4496efc0-search-wrap {
    display: flex;
    flex: 1;
    min-width: 200px;
}
.bcsf-4496efc0-search-field {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0 12px;
    width: 100%;
    max-width: 400px;
    transition: border-color 0.25s ease;
}
.bcsf-4496efc0-search-field:focus-within {
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}
.bcsf-4496efc0-search-icon {
    display: flex;
    align-items: center;
    margin-right: 8px;
    font-size: 14px;
    color: #888;
}
.bcsf-4496efc0-search-icon svg {
    width: 16px;
    height: 16px;
}
.bcsf-4496efc0-search-input {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
    outline: none;
    color: #333;
}
.bcsf-4496efc0-search-input::placeholder {
    color: #aaa;
}

/* Sort */
.bcsf-4496efc0-sort-wrap {
    flex-shrink: 0;
}
.bcsf-4496efc0-sort-select {
    padding: 9px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    outline: none;
}
.bcsf-4496efc0-sort-select:focus {
    border-color: #4361ee;
}

/* Filters */
.bcsf-4496efc0-filters-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.bcsf-4496efc0-filter-icon {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}
.bcsf-4496efc0-filter-icon svg {
    width: 14px;
    height: 14px;
}
.bcsf-4496efc0-tabs-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bcsf-4496efc0-filter-btn {
    padding: 7px 16px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s ease;
    background: #f0f0f0;
    color: #333;
}
.bcsf-4496efc0-filter-btn.active {
    background: #4361ee;
    color: #fff;
    border-color: #4361ee;
}
.bcsf-4496efc0-filter-btn:hover:not(.active) {
    background: #e0e0e0;
}

/* Dropdown filter */
.bcsf-4496efc0-filter-select {
    padding: 9px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8f9fa;
    color: #333;
    cursor: pointer;
    outline: none;
}

/* Radio filter */
.bcsf-4496efc0-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.bcsf-4496efc0-radio-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    cursor: pointer;
    color: #333;
}
.bcsf-4496efc0-radio-label input {
    accent-color: #4361ee;
}

/* Grid */
.bcsf-4496efc0-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bcsf-4496efc0-grid--list {
    grid-template-columns: 1fr;
}

/* Card */
.bcsf-4496efc0-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bcsf-4496efc0-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.bcsf-4496efc0-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bcsf-4496efc0-card--list .bcsf-4496efc0-card-link {
    flex-direction: row;
}
.bcsf-4496efc0-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
}
.bcsf-4496efc0-card--list .bcsf-4496efc0-card-image {
    width: 280px;
    min-width: 280px;
    aspect-ratio: auto;
    min-height: 200px;
}
.bcsf-4496efc0-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.bcsf-4496efc0-card:hover .bcsf-4496efc0-card-image img {
    transform: scale(1.05);
}
.bcsf-4496efc0-card-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #aaa;
    font-size: 14px;
}
.bcsf-4496efc0-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bcsf-4496efc0-card-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bcsf-4496efc0-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.bcsf-4496efc0-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 16px 0;
    flex: 1;
}
.bcsf-4496efc0-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #4361ee;
    transition: gap 0.25s ease;
}
.bcsf-4496efc0-card:hover .bcsf-4496efc0-card-readmore {
    gap: 10px;
}
.bcsf-4496efc0-rm-icon {
    display: inline-flex;
    align-items: center;
}
.bcsf-4496efc0-rm-icon svg {
    width: 16px;
    height: 16px;
}

/* No Results */
.bcsf-4496efc0-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}
.bcsf-4496efc0-no-results svg {
    margin-bottom: 16px;
    color: #ccc;
}
.bcsf-4496efc0-no-results p {
    font-size: 16px;
    margin: 0;
}

/* Loading */
.bcsf-4496efc0-loading {
    text-align: center;
    padding: 20px;
}
.bcsf-4496efc0-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid #e0e0e0;
    border-top-color: #4361ee;
    border-radius: 50%;
    animation: bcsf-spin-4496efc0 0.7s linear infinite;
}
@keyframes bcsf-spin-4496efc0 {
    to { transform: rotate(360deg); }
}

/* Pagination */
.bcsf-4496efc0-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.bcsf-4496efc0-load-more {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    background: #4361ee;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}
.bcsf-4496efc0-load-more:hover {
    background: #3a0ca3;
    transform: translateY(-1px);
}
.bcsf-4496efc0-page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}
.bcsf-4496efc0-page-btn.active {
    background: #4361ee;
    color: #fff;
    border-color: #4361ee;
}
.bcsf-4496efc0-page-btn:hover:not(.active) {
    background: #f0f0f0;
}

/* Custom Button */
.bcsf-4496efc0-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #4361ee;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.bcsf-4496efc0-custom-btn:hover {
    background: #3a0ca3;
    color: #fff;
    transform: translateY(-1px);
}
.bcsf-4496efc0-cbtn-icon {
    display: inline-flex;
    align-items: center;
}
.bcsf-4496efc0-cbtn-icon svg {
    width: 16px;
    height: 16px;
}
.bcsf-4496efc0-custom-btn-row {
    margin-bottom: 16px;
}
.bcsf-4496efc0-custom-btn-row--bottom {
    margin-top: 24px;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .bcsf-4496efc0-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bcsf-4496efc0-card--list .bcsf-4496efc0-card-image {
        width: 220px;
        min-width: 220px;
    }
}
@media (max-width: 767px) {
    .bcsf-4496efc0-grid {
        grid-template-columns: 1fr;
    }
    .bcsf-4496efc0-card--list .bcsf-4496efc0-card-link {
        flex-direction: column;
    }
    .bcsf-4496efc0-card--list .bcsf-4496efc0-card-image {
        width: 100%;
        min-width: auto;
        aspect-ratio: 16 / 10;
    }
    .bcsf-4496efc0-controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    .bcsf-4496efc0-search-field {
        max-width: 100%;
    }
    .bcsf-4496efc0-type-switcher {
        width: 100%;
        justify-content: center;
    }
    .bcsf-4496efc0-tabs-group {
        width: 100%;
    }
    .bcsf-4496efc0-custom-btn {
        width: 100%;
        justify-content: center;
    }
}
