/* =====================
   WINNERS PAGE — winners.css
   ===================== */

/* Active nav link */
.menu__link--active {
    color: #cd4631;
    font-weight: 700;
}

/* =====================
   HERO
   ===================== */
.w-hero {
    background-color: #ffffff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #000;
}

.w-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(205, 70, 49, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.w-hero::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(205, 70, 49, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.w-hero__container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.w-hero__label {
    display: inline-block;
    background-color: #cd4631;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 28px;
}

.w-hero__title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.w-hero__title span {
    color: #cd4631;
}

@media (max-width: 991.98px) {
    .w-hero__title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .w-hero__title {
        font-size: 32px;
    }
}

.w-hero__subtitle {
    font-size: 17px;
    line-height: 170%;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .w-hero {
        padding: 60px 0 40px;
    }

    .w-hero__subtitle {
        font-size: 15px;
    }
}

/* =====================
   GRID
   ===================== */
.w-grid {
    padding: 70px 0 80px;
}

.w-grid__container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1100px) {
    .w-grid__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .w-grid__container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* =====================
   CARD
   ===================== */
.w-card {
    background-color: #fff;
    border-radius: 14px;
    border: 2px solid #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animation only active when JS is loaded */
.js-ready .w-card {
    opacity: 0;
    transform: translateY(24px);
}

.js-ready .w-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.w-card:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.16);
}

/* Cards that appear for secondary awards (same film, different award) */
.w-card--multi {
    border-color: #cd4631;
    box-shadow: 6px 6px 0px 0px rgba(205, 70, 49, 0.20);
}

.w-card--multi:hover {
    box-shadow: 10px 10px 0px 0px rgba(205, 70, 49, 0.28);
}

/* Poster */
.w-card__poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-color: #f0ece8;
    position: relative;
}

.w-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.w-card:hover .w-card__poster img {
    transform: scale(1.04);
}

/* Placeholder poster */
.w-card__poster--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.w-card__placeholder-inner {
    text-align: center;
    padding: 20px;
}

.w-card__placeholder-inner::before {
    content: '🎬';
    display: block;
    font-size: 48px;
    margin-bottom: 16px;
    filter: grayscale(1) brightness(0.8);
}

.w-card__placeholder-inner span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Body */
.w-card__body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Award badge */
.w-card__award {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f7ede8;
    border: 1.5px solid #cd4631;
    border-radius: 6px;
    padding: 5px 12px;
    align-self: flex-start;
}

.w-card__award img {
    width: 18px;
    height: 18px;
}

.w-card__award span {
    font-size: 12px;
    font-weight: 700;
    color: #cd4631;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Title */
.w-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-top: 4px;
}

/* Director */
.w-card__director {
    font-size: 14px;
    font-weight: 600;
    color: #cd4631;
    letter-spacing: 0.02em;
}

/* Synopsis */
.w-card__synopsis {
    font-size: 14px;
    line-height: 160%;
    color: #666;
    margin-top: 4px;
}

/* =====================
   CTA
   ===================== */
.w-cta {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.w-cta__container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.w-cta__text {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 767px) {
    .w-cta__text {
        font-size: 18px;
    }

    .w-cta__container {
        gap: 24px;
    }
}

.w-cta__button {
    display: inline-block;
    background-color: #cd4631;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat Alternates', sans-serif;
    padding: 16px 36px;
    border-radius: 8px;
    box-shadow: 6px 6px 0px 0px rgba(255, 255, 255, 0.12);
    transition: box-shadow 0.3s, transform 0.3s;
    white-space: nowrap;
}

.w-cta__button:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
}