:root {
    --scp-navy: #020817;
    --scp-navy-2: #06132d;
    --scp-navy-3: #081b3d;

    --scp-blue: #2d74f5;
    --scp-blue-light: #6fa2ff;

    --scp-gold: #d6aa80;
    --scp-gold-light: #e0b88f;

    --scp-white: #f7f8fb;
    --scp-text: #c1c9d8;
    --scp-muted: #929db1;

    --scp-light: #f3f4f2;
    --scp-light-text: #162039;
    --scp-light-muted: #667183;

    --scp-white-line: rgba(255, 255, 255, 0.11);
    --scp-dark-line: rgba(11, 31, 57, 0.14);
}


/* ============================================================
   RESET
   ============================================================ */

.scp-honors-page,
.scp-honors-page * {
    box-sizing: border-box;
}

.scp-honors-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;

    background: var(--scp-navy);
    color: var(--scp-white);
}

.scp-honors-page img {
    display: block;
    width: 100%;
}

.scp-honors-page h1,
.scp-honors-page h2,
.scp-honors-page h3,
.scp-honors-page p {
    margin-top: 0;
}

.scp-honors-page h1,
.scp-honors-page h2,
.scp-honors-page h3 {
    font-family: Georgia, "Times New Roman", serif;
}

.scp-honors-page p {
    margin-bottom: 0;
}


/* ============================================================
   HERO
   ============================================================ */

.scp-honors-hero {
    position: relative;

    min-height: 820px;
    width: 100%;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #020713;
}


/* HERO IMAGE */

.scp-hero-image {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.scp-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;

    filter: grayscale(100%);
}


/* HERO FADE */

.scp-hero-fade {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(90deg,
            #020713 0%,
            rgba(2, 7, 19, 0.98) 25%,
            rgba(2, 7, 19, 0.82) 47%,
            rgba(2, 7, 19, 0.30) 75%,
            rgba(2, 7, 19, 0.05) 100%);

    pointer-events: none;
}


/* HERO BLUE GLOW */

.scp-hero-fade::after {
    content: "";

    position: absolute;

    right: 12%;
    top: 18%;

    width: 350px;
    height: 350px;

    background: rgba(31, 92, 210, 0.08);

    border-radius: 50%;

    filter: blur(70px);
}


/* HERO CONTENT */

.scp-hero-content {
    position: relative;

    z-index: 3;

    width: min(1220px, 90%);

    margin: 0 auto;

    padding: 120px 0;
}

.scp-eyebrow {
    display: inline-block;

    color: var(--scp-blue-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.scp-hero-content .scp-eyebrow {
    color: var(--scp-gold);

    position: relative;

    padding-left: 90px;
}

.scp-hero-content .scp-eyebrow::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 65px;
    height: 2px;

    background: var(--scp-gold);

    transform: translateY(-50%);
}


.scp-hero-content h1 {
    max-width: 950px;

    margin: 30px 0 30px;

    color: var(--scp-white);

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(62px, 7.5vw, 118px);

    font-weight: 400;

    line-height: 0.94;

    letter-spacing: -4px;
}

.scp-hero-content h1 em {
    color: var(--scp-gold);

    font-style: normal;
}

.scp-hero-content p {
    max-width: 700px;

    color: var(--scp-text);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    line-height: 1.85;
}

.scp-hero-rule {
    width: 75px;
    height: 2px;

    margin-top: 35px;

    background: var(--scp-blue);
}


/* HERO SCROLL */

.scp-hero-scroll {
    position: absolute;

    z-index: 4;

    left: 50%;
    bottom: 32px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    color: #7f8ba1;

    font-size: 9px;

    letter-spacing: 4px;

    white-space: nowrap;
}

.scp-hero-scroll span {
    width: 50px;
    height: 1px;

    background: var(--scp-blue);
}


/* ============================================================
   CATEGORY LAYOUT
   ============================================================ */

/*
   IMPORTANT:
   The image and text are siblings.

   LEFT:
       sticky image

   RIGHT:
       long scrolling content

   There is NO fixed-height parent around the entire grid.
   Therefore the right side can become as tall as all content
   while the left image stays pinned to the viewport.
*/

.scp-category {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: minmax(380px, 42%) minmax(0, 58%);

    align-items: start;

    overflow: visible;
}


/* ============================================================
   LEFT STICKY IMAGE
   ============================================================ */

.scp-category-visual {
    position: sticky;

    top: 0;

    height: 100vh;
    min-height: 700px;

    align-self: start;

    overflow: hidden;

    z-index: 5;

    background: #030916;
}


/* IMAGE */

.scp-category-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.scp-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    filter: grayscale(75%);

    transform: scale(1.01);

    transition:
        transform 1.2s ease,
        filter 1.2s ease;
}

.scp-category:hover .scp-category-image img {
    transform: scale(1.035);

    filter: grayscale(25%);
}


/* LEFT IMAGE DARK OVERLAY */

.scp-category-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(2, 7, 18, 0.12),
            rgba(2, 7, 18, 0.72));
}


/*
   THIS IS THE IMPORTANT FADE.

   It fades the image from the left/center toward the
   RIGHT content area so the two halves visually merge.
*/

.scp-category-fade {
    position: absolute;

    z-index: 2;

    top: 0;
    right: -1px;

    width: 58%;

    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(2, 8, 23, 0.12) 20%,
            rgba(2, 8, 23, 0.62) 58%,
            rgba(2, 8, 23, 1) 100%);
}


/* ADDITIONAL BOTTOM FADE */

.scp-category-fade::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background:
        linear-gradient(0deg,
            rgba(2, 8, 23, 0.75),
            transparent);
}


/* ============================================================
   IMAGE TITLE
   ============================================================ */

.scp-category-visual-content {
    position: absolute;

    z-index: 4;

    left: 65px;
    right: 50px;
    bottom: 65px;
}

.scp-category-small {
    display: block;

    margin-bottom: 22px;

    color: var(--scp-blue-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;
}

.scp-category-big-number {
    position: absolute;

    right: 0;
    bottom: -15px;

    color: rgba(255, 255, 255, 0.06);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 170px;

    line-height: 0.8;

    pointer-events: none;
}

.scp-category-visual-content h2 {
    position: relative;

    z-index: 2;

    max-width: 500px;

    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 3.7vw, 60px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -1.5px;
}

.scp-category-line {
    width: 65px;
    height: 2px;

    margin-top: 28px;

    background: var(--scp-gold);
}


/* ============================================================
   RIGHT SCROLLING CONTENT
   ============================================================ */

.scp-category-scroll {
    position: relative;

    min-width: 0;

    min-height: 100vh;

    padding:
        105px clamp(45px, 6vw, 100px) 120px;

    z-index: 3;
}


/* LIGHT SECTION */

.scp-category-light .scp-category-scroll {
    background:
        linear-gradient(135deg,
            #f6f7f5 0%,
            #eef0ef 100%);

    color: var(--scp-light-text);
}


/* DARK SECTION */

.scp-category-dark .scp-category-scroll {
    background:
        linear-gradient(135deg,
            #030a1c 0%,
            #07183a 100%);

    color: var(--scp-white);
}


/* ============================================================
   CATEGORY HEADING
   ============================================================ */

.scp-category-heading {
    position: relative;

    padding-bottom: 55px;

    margin-bottom: 10px;
}

.scp-heading-top {
    display: flex;

    align-items: center;

    gap: 25px;
}

.scp-section-count {
    color: var(--scp-blue);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    line-height: 1;
}

.scp-category-heading h3 {
    max-width: 850px;

    margin: 20px 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(44px, 4.5vw, 74px);

    font-weight: 400;

    line-height: 0.99;

    letter-spacing: -2px;
}

.scp-category-light .scp-category-heading h3 {
    color: var(--scp-light-text);
}

.scp-category-dark .scp-category-heading h3 {
    color: #fff;
}

.scp-heading-rule {
    width: 75px;
    height: 2px;

    background: var(--scp-blue);
}


/* ============================================================
   CONTENT ENTRIES
   ============================================================ */

/*
   IMPORTANT:
   NO IMAGE INSIDE THIS LIST.
   Every original content point is text only.
*/

.scp-entry {
    position: relative;

    display: grid;

    grid-template-columns: 75px minmax(0, 1fr);

    gap: 28px;

    padding: 30px 0;

    border-top: 1px solid var(--scp-dark-line);
}

.scp-category-dark .scp-entry {
    border-color: var(--scp-white-line);
}


/* NUMBER */

.scp-entry-meta {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    padding-top: 4px;
}

.scp-entry-number {
    color: var(--scp-blue);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}

.scp-entry-year {
    color: var(--scp-gold);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;

    line-height: 1;
}


/* TEXT */

.scp-entry-text {
    min-width: 0;
}

.scp-entry-text p {
    margin: 0;

    color: var(--scp-light-muted);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.95;
}

.scp-category-dark .scp-entry-text p {
    color: var(--scp-text);
}


/* ENTRY HOVER */

.scp-entry {
    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.scp-entry:hover {
    padding-left: 12px;
}

.scp-entry:hover .scp-entry-number {
    color: var(--scp-blue-light);
}


/* ============================================================
   SUBTLE CONTENT DECORATION
   ============================================================ */

.scp-category-scroll::before {
    content: "";

    position: absolute;

    top: 70px;
    right: 70px;

    width: 140px;
    height: 140px;

    border: 1px solid rgba(45, 116, 245, 0.07);

    border-radius: 50%;

    pointer-events: none;
}

.scp-category-scroll::after {
    content: "";

    position: absolute;

    top: 139px;
    right: 0;

    width: 75px;
    height: 1px;

    background: rgba(45, 116, 245, 0.16);

    pointer-events: none;
}


/* ============================================================
   CLOSING SECTION
   ============================================================ */

.scp-honors-closing {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #020713;
}


/* CLOSING IMAGE */

.scp-closing-image {
    position: absolute;

    inset: 0;
}

.scp-closing-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    filter: grayscale(85%);
}


/* CLOSING FADE */

.scp-closing-fade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            #020713 0%,
            rgba(2, 7, 19, .95) 30%,
            rgba(2, 7, 19, .65) 55%,
            rgba(2, 7, 19, .18) 100%);
}

.scp-closing-content {
    position: relative;

    z-index: 3;

    width: min(1220px, 90%);

    margin: auto;

    /* text-align: center; */

    text-align: -webkit-center;
}

.scp-closing-content h2 {
    max-width: 900px;

    margin: 25px 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(50px, 6vw, 90px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -3px;
}

.scp-closing-content h2 em {
    color: var(--scp-gold);

    font-style: normal;
}

.scp-closing-content p {
    max-width: 680px;

    color: var(--scp-text);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.9;
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media (min-width: 1600px) {

    .scp-category {
        grid-template-columns: 44% 56%;
    }

    .scp-category-scroll {
        padding-left: 95px;
        padding-right: 120px;
    }

    .scp-entry {
        grid-template-columns: 85px minmax(0, 1fr);
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .scp-category {
        grid-template-columns:
            minmax(320px, 38%) minmax(0, 62%);
    }

    .scp-category-visual-content {
        left: 38px;
        right: 30px;
        bottom: 45px;
    }

    .scp-category-scroll {
        padding:
            80px 40px 100px;
    }

    .scp-category-heading h3 {
        font-size: 52px;
    }

    .scp-entry {
        grid-template-columns: 55px minmax(0, 1fr);
        gap: 20px;
    }

    .scp-entry-text p {
        font-size: 16px;
    }

}


/* ============================================================
   MOBILE / TABLET STACK
   ============================================================ */

@media (max-width: 800px) {

    /*
       Sticky desktop layout becomes a normal stacked layout
       on smaller screens for better usability.
    */

    .scp-category {
        display: block;

        overflow: visible;
    }

    .scp-category-visual {
        position: relative;

        top: auto;

        width: 100%;

        height: 470px;

        min-height: 470px;

        overflow: hidden;
    }

    .scp-category-fade {
        width: 100%;

        height: 60%;

        top: auto;
        bottom: 0;

        background:
            linear-gradient(0deg,
                rgba(2, 8, 23, .9),
                rgba(2, 8, 23, .25),
                transparent);
    }

    .scp-category-fade::after {
        display: none;
    }

    .scp-category-visual-content {
        left: 30px;
        right: 30px;
        bottom: 40px;
    }

    .scp-category-big-number {
        font-size: 130px;
    }

    .scp-category-scroll {
        min-height: auto;

        padding:
            75px 7% 90px;
    }

    .scp-category-heading {
        padding-bottom: 40px;
    }

    .scp-category-heading h3 {
        font-size: 47px;
    }

    .scp-entry {
        grid-template-columns: 48px minmax(0, 1fr);

        gap: 16px;

        padding: 27px 0;
    }

    .scp-entry-text p {
        font-size: 16px;

        line-height: 1.8;
    }

    .scp-category-scroll::before,
    .scp-category-scroll::after {
        display: none;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 560px) {

    .scp-honors-hero {
        min-height: 650px;
    }

    .scp-hero-image img {
        object-position: 65% center;
    }

    .scp-hero-fade {
        background:
            linear-gradient(90deg,
                #020713 0%,
                rgba(2, 7, 19, .82) 58%,
                rgba(2, 7, 19, .35) 100%);
    }

    .scp-hero-content {
        width: 88%;
    }

    .scp-hero-content .scp-eyebrow {
        padding-left: 55px;

        font-size: 9px;

        letter-spacing: 3px;
    }

    .scp-hero-content .scp-eyebrow::before {
        width: 40px;
    }

    .scp-hero-content h1 {
        font-size: 55px;

        letter-spacing: -2px;

        line-height: .98;
    }

    .scp-hero-content p {
        font-size: 15px;

        line-height: 1.75;
    }

    .scp-hero-scroll {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .scp-category-visual {
        height: 390px;

        min-height: 390px;
    }

    .scp-category-visual-content {
        left: 22px;
        right: 22px;
        bottom: 30px;
    }

    .scp-category-small {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .scp-category-visual-content h2 {
        font-size: 35px;
    }

    .scp-category-big-number {
        font-size: 100px;
    }

    .scp-category-scroll {
        padding:
            60px 22px 75px;
    }

    .scp-heading-top {
        gap: 15px;
    }

    .scp-category-heading h3 {
        font-size: 39px;

        letter-spacing: -1px;
    }

    .scp-entry {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 12px;

        padding: 24px 0;
    }

    .scp-entry-year {
        font-size: 16px;
    }

    .scp-entry-text p {
        font-size: 15px;

        line-height: 1.75;
    }

    .scp-honors-closing {
        min-height: 550px;
    }

    .scp-closing-content {
        width: 88%;
    }

    .scp-closing-content h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .scp-closing-content p {
        font-size: 15px;
    }

}