/* =====================================================
   BAD-CER-IFD Platform — Frontend Templates CSS
   Design cohérent avec le thème (hero sombre, accents dorés)
   ===================================================== */

:root {
    --bcif-dark: #0B1D2E;
    --bcif-dark-2: #132F46;
    --bcif-gold: #D4A843;
    --bcif-gold-light: #F5E6C8;
    --bcif-blue: #1E3A5F;
    --bcif-text: #2D3748;
    --bcif-text-light: #718096;
    --bcif-white: #FFFFFF;
    --bcif-gray: #F7FAFC;
    --bcif-border: #E2E8F0;
    --bcif-radius: 12px;
    --bcif-shadow: 0 4px 15px rgba(0,0,0,0.08);
    --bcif-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --bcif-font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =====================================================
   HERO HEADER (pour toutes les pages liste)
   ===================================================== */

.bcif-hero {
    background: linear-gradient(135deg, var(--bcif-dark) 0%, var(--bcif-dark-2) 100%);
    padding: 60px 40px 50px;
    margin: -30px -30px 40px -30px;
    color: var(--bcif-white);
    position: relative;
    overflow: hidden;
}

.bcif-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bcif-hero h1 {
    font-family: var(--bcif-font);
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--bcif-white);
}

.bcif-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

.bcif-hero .bcif-hero-accent {
    width: 60px;
    height: 4px;
    background: var(--bcif-gold);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* =====================================================
   FILTRES BAR
   ===================================================== */

.bcif-filters-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0;
}

.bcif-filter-select {
    background: var(--bcif-dark-2);
    color: var(--bcif-white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 10px 24px 10px 16px;
    font-family: var(--bcif-font);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 180px;
    transition: all 0.2s;
}

.bcif-filter-select:hover,
.bcif-filter-select:focus {
    border-color: var(--bcif-gold);
    outline: none;
}

/* Filtres sur fond clair (hors hero) */
.bcif-content-list > .bcif-filters-bar .bcif-filter-select {
    background: var(--bcif-white);
    color: var(--bcif-text);
    border: 1px solid var(--bcif-border);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232D3748' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

/* =====================================================
   GRILLES
   ===================================================== */

.bcif-grid {
    display: grid;
    gap: 24px;
}

.bcif-grid-2 { grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); }
.bcif-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.bcif-grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

@media (max-width: 768px) {
    .bcif-grid-2, .bcif-grid-3, .bcif-grid-4 {
        grid-template-columns: 1fr;
    }
    .bcif-hero { padding: 40px 20px 30px; margin: -20px -20px 30px -20px; }
    .bcif-hero h1 { font-size: 1.8rem; }
}

/* =====================================================
   CARDS GÉNÉRIQUES
   ===================================================== */

.bcif-card {
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--bcif-border);
}

.bcif-card:hover {
    box-shadow: var(--bcif-shadow-hover);
    transform: translateY(-3px);
}

.bcif-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.bcif-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.bcif-card:hover .bcif-card-image img {
    transform: scale(1.05);
}

.bcif-card-content {
    padding: 20px;
}

.bcif-card-title {
    font-family: var(--bcif-font);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: var(--bcif-dark);
}

.bcif-card-title a {
    color: inherit;
    text-decoration: none;
}

.bcif-card-title a:hover {
    color: var(--bcif-gold);
}

.bcif-card-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.bcif-card-date {
    color: var(--bcif-text-light);
    font-size: 0.85rem;
}

.bcif-card p {
    color: var(--bcif-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 8px 0 12px;
}

/* =====================================================
   BADGES
   ===================================================== */

.bcif-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bcif-white);
    z-index: 2;
}

.bcif-badge-urgent { background: #E53E3E; }

.bcif-news-type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bcif-gold-light);
    color: var(--bcif-dark);
}

.bcif-news-rec {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bcif-blue);
    color: var(--bcif-white);
}

.bcif-news-date {
    color: var(--bcif-text-light);
}

.bcif-badge-past {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #CBD5E0;
    color: #4A5568;
}

/* =====================================================
   BOUTONS
   ===================================================== */

.bcif-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--bcif-font);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.bcif-btn-sm { padding: 6px 16px; font-size: 0.8rem; }

.bcif-btn-primary {
    background: var(--bcif-gold);
    color: var(--bcif-dark);
}

.bcif-btn-primary:hover {
    background: #C49A35;
    transform: translateY(-1px);
}

.bcif-btn-outline {
    background: transparent;
    color: var(--bcif-blue);
    border: 1.5px solid var(--bcif-blue);
}

.bcif-btn-outline:hover {
    background: var(--bcif-blue);
    color: var(--bcif-white);
}

/* =====================================================
   ÉVÉNEMENTS & RÉUNIONS (layout horizontal)
   ===================================================== */

.bcif-events-grid,
.bcif-meetings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bcif-event-card,
.bcif-meeting-card {
    display: flex;
    gap: 20px;
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    padding: 20px 24px;
    border: 1px solid var(--bcif-border);
    border-left: 4px solid var(--bcif-gold);
    transition: all 0.3s;
    align-items: flex-start;
}

.bcif-event-card:hover,
.bcif-meeting-card:hover {
    box-shadow: var(--bcif-shadow-hover);
    transform: translateX(4px);
}

.bcif-event-past,
.bcif-meeting-past {
    opacity: 0.65;
    border-left-color: #CBD5E0;
}

.bcif-event-date-box,
.bcif-meeting-date-box {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    background: var(--bcif-dark);
    color: var(--bcif-white);
    border-radius: 10px;
    padding: 12px 8px;
}

.bcif-event-day,
.bcif-meeting-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--bcif-font);
}

.bcif-event-month,
.bcif-meeting-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.8;
}

.bcif-meeting-enddate {
    display: block;
    font-size: 0.65rem;
    margin-top: 6px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 4px;
}

.bcif-event-content h3,
.bcif-meeting-content h3 {
    margin: 0 0 8px 0;
    font-family: var(--bcif-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bcif-dark);
}

.bcif-event-content h3 a,
.bcif-meeting-content h3 a {
    color: inherit;
    text-decoration: none;
}

.bcif-event-content h3 a:hover,
.bcif-meeting-content h3 a:hover {
    color: var(--bcif-gold);
}

.bcif-event-meta,
.bcif-meeting-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--bcif-text-light);
}

.bcif-meeting-format,
.bcif-event-format {
    font-weight: 600;
}

@media (max-width: 600px) {
    .bcif-event-card, .bcif-meeting-card {
        flex-direction: column;
        gap: 12px;
    }
    .bcif-event-date-box, .bcif-meeting-date-box {
        width: auto;
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 8px 16px;
    }
}

/* =====================================================
   FICHES CER
   ===================================================== */

.bcif-cer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.bcif-cer-card {
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    padding: 24px;
    transition: all 0.3s;
    text-align: center;
}

.bcif-cer-card:hover {
    box-shadow: var(--bcif-shadow-hover);
    transform: translateY(-3px);
}

.bcif-cer-logo {
    margin-bottom: 12px;
}

.bcif-cer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.bcif-cer-name {
    font-family: var(--bcif-font);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.bcif-cer-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.bcif-cer-stat {
    text-align: center;
}

.bcif-stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--bcif-font);
    color: var(--bcif-dark);
}

.bcif-stat-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bcif-text-light);
}

.bcif-cer-hq {
    font-size: 0.9rem;
    color: var(--bcif-text-light);
    margin: 0 0 16px 0;
}

.bcif-cer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--bcif-border);
    font-size: 0.85rem;
    color: var(--bcif-text-light);
}

/* =====================================================
   DOCUMENTS
   ===================================================== */

.bcif-documents-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bcif-document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    padding: 16px 20px;
    border: 1px solid var(--bcif-border);
    transition: all 0.2s;
}

.bcif-document-item:hover {
    box-shadow: var(--bcif-shadow-hover);
    border-color: var(--bcif-gold);
}

.bcif-doc-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bcif-doc-info {
    flex: 1;
}

.bcif-doc-title {
    font-family: var(--bcif-font);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--bcif-dark);
}

.bcif-doc-title a {
    color: inherit;
    text-decoration: none;
}

.bcif-doc-title a:hover {
    color: var(--bcif-gold);
}

.bcif-doc-meta {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
}

.bcif-doc-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    background: var(--bcif-gold-light);
    color: var(--bcif-dark);
    font-weight: 600;
}

.bcif-doc-date {
    color: var(--bcif-text-light);
}

.bcif-doc-actions {
    flex-shrink: 0;
}

/* =====================================================
   GALERIE
   ===================================================== */

.bcif-gallery-cover {
    position: relative;
}

.bcif-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,29,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--bcif-white);
    font-weight: 600;
}

.bcif-gallery-card:hover .bcif-gallery-overlay {
    opacity: 1;
}

.bcif-gallery-date {
    color: var(--bcif-text-light);
    font-size: 0.85rem;
}

/* =====================================================
   TÉMOIGNAGES
   ===================================================== */

.bcif-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.bcif-testimonial-card {
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    padding: 28px;
    position: relative;
    border: 1px solid var(--bcif-border);
}

.bcif-testimonial-quote {
    font-size: 3rem;
    color: var(--bcif-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.bcif-testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bcif-text);
    margin-bottom: 20px;
    font-style: italic;
}

.bcif-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--bcif-border);
    padding-top: 16px;
}

.bcif-testimonial-photo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.bcif-testimonial-info {
    display: flex;
    flex-direction: column;
}

.bcif-testimonial-info strong {
    font-family: var(--bcif-font);
    color: var(--bcif-dark);
    font-size: 0.95rem;
}

.bcif-testimonial-info span {
    font-size: 0.8rem;
    color: var(--bcif-text-light);
}

/* =====================================================
   NO CONTENT / EMPTY STATE
   ===================================================== */

.bcif-no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--bcif-text-light);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* =====================================================
   SINGLE TEMPLATES — Inspiré Exhibz / Eventiva / TheGem
   ===================================================== */

.bcif-single-wrap {
    margin: -30px -30px 0 -30px;
}

/* === HERO SINGLE === */

.bcif-single-hero {
    background: linear-gradient(135deg, var(--bcif-dark) 0%, var(--bcif-dark-2) 100%);
    padding: 50px 5% 55px;
    color: var(--bcif-white);
    position: relative;
    overflow: hidden;
}

.bcif-single-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bcif-gold), transparent);
}

.bcif-single-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Breadcrumb */
.bcif-single-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.bcif-single-breadcrumb a {
    color: var(--bcif-gold-light);
    text-decoration: none;
}

.bcif-single-breadcrumb a:hover {
    color: var(--bcif-gold);
    text-decoration: underline;
}

.bcif-single-breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* Status badge */
.bcif-single-status {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.bcif-status-upcoming {
    background: rgba(72, 187, 120, 0.2);
    color: #68D391;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.bcif-status-past {
    background: rgba(160, 174, 192, 0.2);
    color: #A0AEC0;
    border: 1px solid rgba(160, 174, 192, 0.3);
}

.bcif-status-project {
    background: rgba(212, 168, 67, 0.2);
    color: var(--bcif-gold);
    border: 1px solid rgba(212, 168, 67, 0.3);
}

.bcif-status-publication {
    background: rgba(99, 179, 237, 0.2);
    color: #63B3ED;
    border: 1px solid rgba(99, 179, 237, 0.3);
}

.bcif-status-news {
    background: rgba(237, 137, 54, 0.2);
    color: #ED8936;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.bcif-status-doc {
    background: rgba(159, 122, 234, 0.2);
    color: #9F7AEA;
    border: 1px solid rgba(159, 122, 234, 0.3);
}

.bcif-status-urgent, .bcif-status-haute {
    background: rgba(245, 101, 101, 0.2);
    color: #FC8181;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

/* Title */
.bcif-single-title {
    font-family: var(--bcif-font);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--bcif-white);
    max-width: 900px;
}

/* Quick Info Bar */
.bcif-single-quickinfo {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.bcif-quickinfo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.bcif-qi-icon {
    font-size: 1.1rem;
}

.bcif-qi-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

/* === BODY LAYOUT === */

.bcif-single-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 5%;
}

.bcif-single-body--wide {
    grid-template-columns: 1fr;
    max-width: 850px;
}

.bcif-single-main--wide {
    max-width: 100%;
}

/* Content */
.bcif-single-content {
    line-height: 1.8;
    color: var(--bcif-text);
    font-size: 1rem;
}

.bcif-single-content p {
    margin-bottom: 1.2em;
}

.bcif-single-content img {
    border-radius: var(--bcif-radius);
    max-width: 100%;
}

.bcif-section-title {
    font-family: var(--bcif-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bcif-dark);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bcif-gold);
    display: inline-block;
}

/* Featured image */
.bcif-single-featured-image {
    margin: 24px 0;
    border-radius: var(--bcif-radius);
    overflow: hidden;
}

.bcif-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Publication cover */
.bcif-publication-cover {
    max-width: 300px;
    margin: 0 0 24px 0;
    border-radius: var(--bcif-radius);
    overflow: hidden;
    box-shadow: var(--bcif-shadow);
}

.bcif-publication-cover img {
    width: 100%;
    height: auto;
}

/* === SIDEBAR INFO CARD === */

.bcif-single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bcif-info-card {
    background: var(--bcif-white);
    border-radius: var(--bcif-radius);
    box-shadow: var(--bcif-shadow);
    border: 1px solid var(--bcif-border);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.bcif-info-card-title {
    font-family: var(--bcif-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bcif-dark);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bcif-gold);
}

.bcif-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bcif-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--bcif-border);
    gap: 12px;
}

.bcif-info-list li:last-child {
    border-bottom: none;
}

.bcif-info-label {
    font-size: 0.85rem;
    color: var(--bcif-text-light);
    white-space: nowrap;
}

.bcif-info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bcif-dark);
    text-align: right;
}

.bcif-btn-block {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
}

/* === PROGRESS BAR (projets) === */

.bcif-progress-section {
    margin: 32px 0;
}

.bcif-progress-bar {
    height: 12px;
    background: var(--bcif-border);
    border-radius: 6px;
    overflow: hidden;
}

.bcif-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bcif-gold), #E8C36A);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.bcif-progress-text {
    font-size: 0.9rem;
    color: var(--bcif-text-light);
    margin-top: 6px;
}

/* === VIDEO EMBED === */

.bcif-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--bcif-radius);
    margin-bottom: 24px;
    box-shadow: var(--bcif-shadow);
}

.bcif-video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === REC HERO EXTRAS === */

.bcif-rec-hero-logo {
    margin-bottom: 16px;
}

.bcif-rec-hero-logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.3);
}

.bcif-rec-stats-bar {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.bcif-rec-stat-item {
    text-align: center;
}

.bcif-rec-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--bcif-font);
    color: var(--bcif-gold);
}

.bcif-rec-stat-lbl {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
    .bcif-single-body {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .bcif-single-hero {
        padding: 30px 20px 40px;
    }
    .bcif-single-title {
        font-size: 1.7rem;
    }
    .bcif-single-quickinfo {
        gap: 10px;
    }
    .bcif-quickinfo-item {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    .bcif-info-card {
        position: static;
    }
    .bcif-single-wrap {
        margin: -20px -20px 0 -20px;
    }
    .bcif-rec-stats-bar {
        gap: 20px;
    }
}
