/* =====================================================
   NOMINEES PAGE
===================================================== */

.nominees-page {
    background: #f4f4f4;

}


/* =====================================================
   HERO
===================================================== */

.nominees-page-hero {
    padding: 150px 0 120px;
    background: #262626;
    color: #ffffff;

}


.nominees-hero-content {
    max-width: 800px;

}


.nominees-hero-content h1 {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(65px,
            10vw,
            140px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.07em;

}


.nominees-hero-content p {
    max-width: 500px;
    margin-top: 35px;
    color: rgba(255,
            255,
            255,
            0.55);
    font-size: 14px;
    line-height: 1.8;

}


/* =====================================================
   DIRECTORY
===================================================== */

.nominees-directory {
    padding: 80px 0 130px;

}


/* =====================================================
   FILTER BAR
===================================================== */

.nominees-filter-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;

}


.nominees-search-form {
    display: flex;
    width: 420px;

}


.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    border-bottom: 1px solid #cccccc;

}


.search-input-wrapper span {
    color: #999999;
    font-size: 24px;

}


.search-input-wrapper input {
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 13px;

}


.nominees-search-form button {
    padding: 0 25px;
    border: none;
    background: #262626;
    color: #ffffff;
    font-family: inherit;
    font-size: 10px;
    cursor: pointer;

}


.nominees-category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;

}


.nominees-category-filter a {
    padding: 10px 15px;
    border: 1px solid #dddddd;
    color: #777777;
    font-size: 9px;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;

}


.nominees-category-filter a:hover,

.nominees-category-filter a.active {
    border-color: #262626;
    background: #262626;
    color: #ffffff;

}


/* =====================================================
   GRID
===================================================== */

.nominees-grid {
    display: grid;
    grid-template-columns:
        repeat(4,
            1fr);
    gap: 25px;

}


/* =====================================================
   CARD
===================================================== */

.nominee-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    color: #262626;
    text-decoration: none;
    transition:
        transform 0.5s cubic-bezier(0.22,
            1,
            0.36,
            1),
        box-shadow 0.5s ease;

}


.nominee-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 60px rgba(38,
            38,
            38,
            0.12);

}


/* =====================================================
   IMAGE
===================================================== */

.nominee-card-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #dddddd;

}


.nominee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.22,
            1,
            0.36,
            1);

}


.nominee-card:hover .nominee-card-image img {
    transform: scale(1.08);

}


.nominee-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(38,
                38,
                38,
                0.65),
            transparent 50%);

}


.nominee-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            #303030,
            #555555);

}


.nominee-card-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 110px;
    color: rgba(255,
            255,
            255,
            0.25);

}


.nominee-card-placeholder small {
    color: #c9a97a;
    font-size: 8px;
    letter-spacing: 0.15em;

}


/* =====================================================
   FEATURED LABEL
===================================================== */

.nominee-featured-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 10px;
    background: #c9a97a;
    color: #262626;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;

}


.nominee-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,
            255,
            255,
            0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    transition:
        background 0.3s ease,
        color 0.3s ease;

}


.nominee-card:hover .nominee-card-arrow {
    background: #c9a97a;
    color: #262626;

}


/* =====================================================
   CONTENT
===================================================== */

.nominee-card-content {
    padding: 25px;

}


.nominee-card-category {
    color: #c9a97a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

}


.nominee-card-content h2 {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;

}


.nominee-card-content p {
    margin-top: 8px;
    color: #888888;
    font-size: 11px;

}


.nominee-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    color: #888888;
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;

}


.nominee-card-footer span:first-child {
    color: #262626;
    font-weight: 700;

}


/* =====================================================
   EMPTY STATE
===================================================== */

.nominees-empty-state {
    padding: 120px 20px;
    text-align: center;

}


.nominees-empty-state span {
    color: #c9a97a;
    font-size: 45px;

}


.nominees-empty-state h2 {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;

}


.nominees-empty-state p {
    margin-top: 15px;
    color: #888888;
    font-size: 13px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .nominees-grid {
        grid-template-columns:
            repeat(3,
                1fr);
    }

}


@media (max-width: 800px) {
    .nominees-filter-bar {
        flex-direction: column;
    }

    .nominees-search-form {
        width: 100%;
    }

    .nominees-category-filter {
        justify-content: flex-start;
    }

    .nominees-grid {
        grid-template-columns:
            repeat(2,
                1fr);
    }

}


@media (max-width: 520px) {
    .nominees-page-hero {
        padding: 100px 0 80px;
    }

    .nominees-hero-content h1 {
        font-size: 68px;
    }

    .nominees-directory {
        padding: 60px 0 90px;
    }

    .nominees-grid {
        grid-template-columns: 1fr;
    }

    .nominee-card-image {
        height: 430px;
    }

}