/* =====================================================
   CATEGORY PAGE
===================================================== */

.category-page {
    background: #f4f4f4;

}


/* =====================================================
   HERO
===================================================== */

.category-hero {
    padding: 120px 0 100px;
    background: #262626;
    color: #ffffff;

}


.category-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;

}


.category-hero-content {
    max-width: 580px;

}


.back-link {
    display: inline-block;
    margin-bottom: 60px;
    color: rgba(255,
            255,
            255,
            0.55);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.3s ease;

}


.back-link:hover {
    color: #c9a97a;

}


.category-hero h1 {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px,
            7vw,
            100px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;

}


.category-hero-content>p {
    max-width: 450px;
    margin-top: 30px;
    color: rgba(255,
            255,
            255,
            0.6);
    font-size: 13px;
    line-height: 1.9;

}


.category-hero-meta {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    color: #c9a97a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

}


/* =====================================================
   HERO VISUAL
===================================================== */

.category-hero-visual {
    position: relative;
    height: 520px;
    overflow: hidden;

}


.category-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.category-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            #383838,
            #555555);
    text-align: center;

}


.category-hero-placeholder span {
    max-width: 400px;
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 42px;

}


.category-hero-placeholder small {
    color: #c9a97a;
    font-size: 8px;
    letter-spacing: 0.2em;

}


/* =====================================================
   NOMINEES DIRECTORY
===================================================== */

.nominees-directory {
    padding: 120px 0;

}


.nominees-directory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;

}


.nominees-directory-heading h2 {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px,
            5vw,
            70px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;

}


/* =====================================================
   SEARCH
===================================================== */

.nominee-search {
    position: relative;
    width: 100%;
    max-width: 350px;

}


.nominee-search input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 1px solid #d5d5d5;
    outline: none;
    background: #ffffff;
    font-family: inherit;
    font-size: 12px;

}


.nominee-search>span {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #c9a97a;
    font-size: 20px;
    transform: translateY(-50%);

}


/* =====================================================
   GRID
===================================================== */

.nominees-grid {
    display: grid;
    grid-template-columns: repeat(4,
            1fr);
    gap: 22px;

}


/* =====================================================
   CARD
===================================================== */

.nominee-card {
    overflow: hidden;
    background: #ffffff;
    transition:
        transform 0.5s cubic-bezier(.16,
            1,
            .3,
            1),
        box-shadow 0.5s ease;

}


.nominee-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(38,
            38,
            38,
            0.12);

}


/* =====================================================
   IMAGE
===================================================== */

.nominee-card-image {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
    background: #333333;

}


.nominee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(.16,
            1,
            .3,
            1);

}


.nominee-card:hover .nominee-card-image img {
    transform: scale(1.08);

}


.nominee-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            #353535,
            #4b4b4b);
    color: rgba(255,
            255,
            255,
            0.6);

}


.nominee-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 80px;

}


.nominee-placeholder small {
    color: #c9a97a;
    font-size: 7px;
    letter-spacing: 0.15em;

}


/* =====================================================
   ARROW
===================================================== */

.nominee-card-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,
            255,
            255,
            0.6);
    border-radius: 50%;
    color: #ffffff;
    font-size: 17px;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;

}


.nominee-card:hover .nominee-card-arrow {
    background: #c9a97a;
    color: #262626;
    transform: rotate(45deg);

}


/* =====================================================
   CONTENT
===================================================== */

.nominee-card-content {
    padding: 24px;

}


.nominee-number {
    color: #c9a97a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;

}


.nominee-card h3 {
    margin-top: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.05;

}


.nominee-company {
    display: block;
    margin-top: 8px;
    color: #777777;
    font-size: 10px;

}


.nominee-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
    color: #777777;
    font-size: 9px;

}


.nominee-vote-link {
    color: #c9a97a;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;

}


/* =====================================================
   NO RESULTS
===================================================== */

.nominees-no-results {
    display: none;
    padding: 100px 20px;
    text-align: center;

}


.nominees-no-results.is-visible {
    display: block;

}


.nominees-no-results>span {
    color: #c9a97a;
    font-size: 32px;

}


.nominees-no-results h3 {
    margin-top: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;

}


.nominees-no-results p {
    margin-top: 10px;
    color: #777777;
    font-size: 12px;

}


/* =====================================================
   CTA
===================================================== */

.category-vote-cta {
    padding: 100px 0;
    background: #c9a97a;

}


.category-vote-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

}


.category-vote-cta h2 {
    max-width: 650px;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(45px,
            6vw,
            80px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;

}


.category-vote-cta h2 em {
    font-style: italic;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .nominees-grid {
        grid-template-columns: repeat(3,
                1fr);
    }

}


@media (max-width: 850px) {
    .category-hero-grid {
        grid-template-columns: 1fr;
    }

    .category-hero-visual {
        height: 420px;
    }

    .nominees-directory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .nominee-search {
        max-width: 100%;
    }

    .nominees-grid {
        grid-template-columns: repeat(2,
                1fr);
    }

}


@media (max-width: 550px) {
    .category-hero {
        padding: 90px 0 70px;
    }

    .back-link {
        margin-bottom: 40px;
    }

    .category-hero-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nominees-directory {
        padding: 80px 0;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
    }

    .nominee-card-image {
        height: 360px;
    }

    .category-vote-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}