:root {
    --navy: #173a5e;
    --blue: #156fa8;
    --gold: #d5a62b;
    --paper: #faf9f6;
    --ink: #263e56;
    --muted: #687887;
    --line: #dce3e8;
    --soft: #edf5f8;
    --white: #fff;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, sans-serif;
    letter-spacing: 0;
}
.eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.section-space {
    padding: 80px 0;
}
.section-rule {
    height: 1px;
    background: var(--line);
}
.featured-card {
    height: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 3px;
    background: var(--white);
    box-shadow: 0 18px 50px -32px rgba(23, 58, 94, 0.55);
}
.featured-img-wrap {
    height: 330px;
    overflow: hidden;
    background: #e7ecef;
}
.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-copy {
    min-height: 245px;
    border-top: 1px solid var(--line);
    padding: 30px;
}
.distinguished {
    color: var(--blue);
    font-weight: 600;
}
.archive {
    border-top: 1px solid var(--line);
    background: var(--white);
}
.nav-pills {
    max-width: 380px;
    padding: 4px;
    border-radius: 3px;
    background: #edf0f2;
}
.nav-pills .nav-link {
    border-radius: 3px;
    color: var(--ink);
    font-weight: 600;
}
.nav-pills .nav-link.active {
    background: var(--blue);
    color: var(--white);
}
.awardee-card {
    margin-bottom: 36px;
}
.awardee-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
    border-radius: 3px;
    background: #edf0f2;
}
.awardee-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.awardee-image.logo {
    object-fit: contain;
    padding: 40px;
    background: var(--soft);
}
.awardee-card:hover .awardee-image {
    transform: scale(1.025);
}
.year-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 7px rgba(23, 58, 94, 0.12);
}
.awardee-name {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}
.additional-awardees {
    border-top: 1px solid var(--line);
}
.additional-item {
    border-left: 2px solid var(--gold);
    font-size: 14px;
}
.additional-year {
    color: var(--blue);
}
@media (max-width: 991.98px) {
    .section-space {
        padding: 58px 0;
    }
}
@media (max-width: 575.98px) {
    .section-space {
        padding: 48px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .featured-img-wrap {
        height: auto;
        padding-top: 75%;
        position: relative;
    }
    .featured-img {
        position: absolute;
        inset: 0;
    }
    .featured-copy {
        min-height: 0;
        padding: 24px;
    }
    .nav-pills {
        max-width: none;
    }
    .awardee-image.logo {
        padding: 28px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .awardee-image {
        transition: none;
    }
}
