/* =============================== */
/*   COMPOSANTS - FILM DETAIL      */
/* =============================== */

/* Studios avec logos */
.studios-section {
    margin-top: var(--spacing-md);
}

.studios-logos-scroll {
    grid-auto-columns: 140px;
}

.studios-tags {
    margin-top: 0.5rem;
}

/* Credits cles */
.credits-section {
    --oscar-gold: #c9961a;
    --oscar-ink: #1f2d3d;
}

.credits-basic-list {
    margin-bottom: 1.25rem;
}

.credits-tags {
    margin-top: 0.5rem;
}

.credit-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0f5fb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
}

.credit-tag .credit-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Icone Oscar */
.ico-oscar {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-right: 4px;
}

.oscars-showcase {
    position: relative;
    margin-top: 1.25rem;
    padding: 1.4rem;
    border: 1px solid rgba(201, 150, 26, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(249, 214, 112, 0.26), transparent 34%),
        linear-gradient(135deg, #fffdf8 0%, #ffffff 56%, #f7fbff 100%);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.oscars-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 38%);
}

.oscars-showcase-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.oscars-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--oscar-gold);
}

.oscars-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--oscar-ink);
}

.oscars-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 150, 26, 0.25);
    background: rgba(255, 250, 232, 0.95);
    color: #8a6112;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.oscars-awards-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.95rem;
}

.oscar-award-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(201, 150, 26, 0.14);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(148, 163, 184, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.oscar-award-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 150, 26, 0.28);
    box-shadow: 0 14px 30px rgba(148, 163, 184, 0.16);
}

.oscar-award-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff8de 0%, #f5df98 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

.oscar-award-icon-wrap .ico-oscar {
    width: 22px;
    margin-right: 0;
}

.oscar-award-body {
    min-width: 0;
}

.oscar-award-label,
.oscar-award-person {
    margin: 0;
}

.oscar-award-label {
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a5b17;
}

.oscar-award-person {
    margin-top: 0.28rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--oscar-ink);
}

.oscar-award-year {
    align-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    background: #edf5ff;
    color: #315b8a;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (max-width: 720px) {
    .oscars-showcase {
        padding: 1.1rem;
        border-radius: 20px;
    }

    .oscars-showcase-head {
        flex-direction: column;
        align-items: stretch;
    }

    .oscars-count {
        width: fit-content;
    }

    .oscars-awards-grid {
        grid-template-columns: 1fr;
    }

    .oscar-award-card {
        grid-template-columns: auto 1fr;
    }

    .oscar-award-year {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.2rem;
    }
}
