/* =========================================================
   NEURO SPICY COLLECTIVE
   UNIFIED BLOG STYLESHEET

   Supports:
   - blog/index.html
   - individual blog article pages
   - shared blog header / navigation
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
    --navy: #0b315f;
    --navy-dark: #082747;

    --orange: #ff5a1f;
    --orange-dark: #e84b14;

    --blue: #2f6fba;

    --cream: #faf8f3;
    --white: #ffffff;

    --text: #17385f;
    --muted: #687b92;

    --light-blue: #edf4fa;
    --border: #dce3ea;

    --max-width: 1180px;
    --article-width: 760px;

    --radius: 14px;

    --shadow-soft:
        0 8px 30px rgba(11, 49, 95, 0.08);

    --shadow-card:
        0 14px 38px rgba(11, 49, 95, 0.10);
}


/* =========================================================
   2. RESET / GLOBAL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--cream);
    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 18px;
    line-height: 1.75;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

a {
    color: var(--navy);

    text-decoration-thickness: 2px;
    text-underline-offset: 3px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

a:hover {
    color: var(--orange);
}

::selection {
    background: var(--orange);
    color: var(--white);
}


/* =========================================================
   3. SHARED SITE HEADER
   ========================================================= */

/*
   The Blog Index uses:
   .site-header
   .nav-container
   .site-logo
   .main-navigation

   The article stylesheet previously used:
   .site-header
   .site-header-inner
   .blog-logo
   .site-nav

   Both structures are supported below.
*/


.site-header {
    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    position: relative;
    z-index: 100;
}


/* Blog Index header */

.nav-container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    min-height: 108px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* Article-compatible header */

.site-header-inner {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    min-height: 108px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}


/* =========================================================
   4. SITE LOGO
   ========================================================= */

.site-logo,
.blog-logo {
    flex: 0 0 auto;

    color: var(--navy);

    font-size: 19px;
    font-weight: 850;

    letter-spacing: -0.02em;

    line-height: 1.1;

    text-decoration: none;
}

.site-logo:hover,
.blog-logo:hover {
    color: var(--orange);
}


/* If an image logo is used */

.blog-logo img {
    width: 190px;
    height: auto;

    display: block;
}

.blog-logo {
    display: flex;
    align-items: center;

    line-height: 0;
}


/* =========================================================
   5. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 42px;

    padding: 8px;

    background: transparent;

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--navy);

    border-radius: 999px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   6. NAVIGATION
   ========================================================= */

/*
   Blog Index:
   .main-navigation

   Article-compatible:
   .site-nav
*/


.main-navigation,
.site-nav {
    flex: 1 1 auto;

    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 24px;
}

.main-navigation ul {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.main-navigation li {
    margin: 0;
    padding: 0;
}

.main-navigation a,
.site-nav a {
    display: inline-flex;

    align-items: center;

    color: var(--navy);

    font-size: 15px;
    font-weight: 750;

    line-height: 1.2;

    text-decoration: none;
}

.main-navigation a:hover,
.site-nav a:hover {
    color: var(--orange);

    transform: translateY(-1px);
}


/* Active navigation */

.main-navigation a[aria-current="page"],
.site-nav a.active,
.site-nav a[aria-current="page"] {
    color: var(--orange);
}


/* =========================================================
   7. GENERAL CONTAINERS
   ========================================================= */

.container,
.blog-container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin-inline: auto;
}


/* =========================================================
   8. BLOG INDEX HERO
   ========================================================= */

.blog-hero {
    position: relative;

    width: 100%;

    padding: 105px 24px 95px;

    background:
        linear-gradient(
            180deg,
            var(--white) 0%,
            var(--cream) 100%
        );

    text-align: center;
}

.blog-hero-inner {
    width: min(
        100%,
        1000px
    );

    margin-inline: auto;
}


/* Shared eyebrow */

.blog-eyebrow,
.blog-page-header .eyebrow {
    margin: 0 0 20px;

    color: var(--orange);

    font-size: 14px;
    font-weight: 850;

    letter-spacing: 0.20em;

    line-height: 1.2;

    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 900px;

    margin: 0 auto;

    color: var(--navy);

    font-size: clamp(
        52px,
        7vw,
        82px
    );

    font-weight: 900;

    letter-spacing: -0.055em;

    line-height: 0.98;
}

.blog-intro {
    max-width: 790px;

    margin: 34px auto 0;

    color: var(--text);

    font-size: clamp(
        20px,
        2.4vw,
        26px
    );

    font-weight: 600;

    line-height: 1.55;
}

.blog-intro-secondary {
    max-width: 700px;

    margin: 22px auto 0;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   9. STORY NAVIGATION
   ========================================================= */

.story-navigation {
    padding: 0 0 20px;

    background: var(--cream);

    scroll-margin-top: 24px;
}

.story-navigation-inner {
    padding: 38px 42px 42px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow-soft);
}

.story-navigation-heading {
    margin-bottom: 26px;
}

.story-navigation-heading .blog-eyebrow {
    margin-bottom: 10px;
}

.story-navigation-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;

    letter-spacing: -0.035em;
    line-height: 1.1;
}

.story-button-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.story-button-grid a {
    display: flex;

    align-items: center;

    min-height: 52px;

    padding: 11px 18px;

    background: var(--light-blue);
    color: var(--navy);

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    line-height: 1.35;
    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.story-button-grid a:hover,
.story-button-grid a:focus-visible {
    background: var(--navy);
    color: var(--white);

    border-color: var(--navy);

    transform: translateY(-2px);
}

.story-select-wrapper {
    display: none;
}

.blog-featured {
    scroll-margin-top: 24px;
}

.blog-featured-card {
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.blog-featured.is-highlighted .blog-featured-card {
    border-color: var(--orange);

    box-shadow:
        0 0 0 5px rgba(255, 90, 31, 0.16),
        var(--shadow-card);

    transform: translateY(-4px);
}

.back-to-stories {
    display: inline-block;

    margin-top: 24px;

    color: var(--navy);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
}

.back-to-stories:hover {
    color: var(--orange);
}


/* =========================================================
   10. BLOG FEATURED SECTION
   ========================================================= */

.blog-featured {
    padding: 100px 0;

    background: var(--cream);
}

.blog-section-heading {
    margin-bottom: 38px;
}

.blog-section-heading h2 {
    max-width: 850px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(
        38px,
        5vw,
        58px
    );

    font-weight: 900;

    letter-spacing: -0.045em;

    line-height: 1.05;
}

.blog-section-heading > p:last-child {
    max-width: 720px;

    margin: 20px 0 0;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.65;
}


/* =========================================================
   10. FEATURED ARTICLE CARD
   ========================================================= */

.blog-featured-card {
    width: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-card);

    overflow: hidden;

    position: relative;
}

.blog-featured-card::before {
    content: "";

    display: block;

    width: 100%;
    height: 7px;

    background: var(--orange);
}

.blog-featured-content {
    max-width: 850px;

    padding: 48px 52px 52px;
}

.blog-card-category {
    margin: 0 0 15px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 850;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    line-height: 1.3;
}

.blog-featured-content h3 {
    margin: 0 0 22px;

    color: var(--navy);

    font-size: clamp(
        32px,
        4vw,
        48px
    );

    font-weight: 900;

    letter-spacing: -0.035em;

    line-height: 1.1;
}

.blog-featured-content h3 a {
    color: inherit;

    text-decoration: none;
}

.blog-featured-content h3 a:hover {
    color: var(--orange);
}

.blog-card-excerpt {
    margin: 0 0 18px;

    color: var(--text);

    font-size: 18px;

    line-height: 1.75;
}

.blog-card-meta {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 650;
}

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 13px 22px;

    background: var(--orange);

    color: var(--white) !important;

    border-radius: 999px;

    font-size: 15px;

    font-weight: 800;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.blog-read-more:hover {
    background: var(--orange-dark);

    color: var(--white) !important;

    transform: translateY(-2px);
}


/* =========================================================
   11. BLOG MESSAGE
   ========================================================= */

.blog-message {
    padding: 105px 0;

    background: var(--navy);

    color: var(--white);
}

.blog-message-inner {
    max-width: 850px;

    margin-inline: auto;

    text-align: center;
}

.blog-message .blog-eyebrow {
    color: var(--orange);
}

.blog-message h2 {
    margin: 0 0 30px;

    color: var(--white);

    font-size: clamp(
        38px,
        5vw,
        60px
    );

    font-weight: 900;

    letter-spacing: -0.045em;

    line-height: 1.05;
}

.blog-message-inner > p:not(.blog-eyebrow):not(.blog-message-highlight) {
    max-width: 760px;

    margin: 0 auto 22px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 19px;

    line-height: 1.75;
}

.blog-message-highlight {
    margin: 38px 0 0;

    color: var(--orange);

    font-size: 34px;

    font-weight: 900;

    letter-spacing: -0.02em;

    line-height: 1.1;
}


/* =========================================================
   12. MORE STORIES
   ========================================================= */

.blog-more {
    padding: 105px 0 115px;

    background: var(--light-blue);
}

.blog-coming-soon-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    margin-top: 50px;
}

.blog-placeholder-card {
    min-height: 280px;

    padding: 32px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-soft);
}

.blog-placeholder-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 24px;

    background: var(--orange);

    color: var(--white);

    border-radius: 50%;

    font-size: 14px;

    font-weight: 850;

    line-height: 1;
}

.blog-placeholder-card h3 {
    margin: 0 0 14px;

    color: var(--navy);

    font-size: 25px;

    font-weight: 850;

    letter-spacing: -0.025em;

    line-height: 1.2;
}

.blog-placeholder-card p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   13. LEGACY / ALTERNATIVE BLOG INDEX CLASSES
   ========================================================= */

/*
   These rules keep compatibility with the earlier
   blog-index markup that used:
   .blog-page-header
   .blog-grid
   .blog-card
*/


.blog-page-header {
    width: min(
        calc(100% - 48px),
        1000px
    );

    margin: 0 auto;

    padding: 105px 24px 70px;

    text-align: center;
}

.blog-page-header h1 {
    margin: 0;

    color: var(--navy);

    font-size: clamp(
        52px,
        7vw,
        82px
    );

    font-weight: 900;

    letter-spacing: -0.055em;

    line-height: 0.98;
}

.blog-page-header p {
    max-width: 760px;

    margin: 30px auto 0;

    color: var(--muted);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.55;
}

.blog-grid {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 20px 0 100px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}

.blog-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(11, 49, 95, 0.12);
}

.blog-card-content {
    padding: 32px;
}

.blog-card h2 {
    margin: 12px 0 15px;

    color: var(--navy);

    font-size: 30px;

    font-weight: 850;

    letter-spacing: -0.025em;

    line-height: 1.15;
}

.blog-card h2 a {
    color: inherit;

    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--orange);
}

.blog-card p {
    margin: 0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.65;
}


/* =========================================================
   14. ARTICLE HEADER
   ========================================================= */

.article-header {
    width: min(
        calc(100% - 48px),
        1000px
    );

    margin: 0 auto;

    padding: 90px 24px 70px;

    text-align: center;
}


/* =========================================================
   15. ARTICLE KICKER
   ========================================================= */

.article-kicker {
    margin: 0 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    color: var(--orange);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    line-height: 1.2;
}

.article-kicker span {
    display: block;

    width: 34px;
    height: 3px;

    background: var(--orange);

    border-radius: 999px;
}


/* =========================================================
   16. ARTICLE TITLE
   ========================================================= */

.article-header h1 {
    max-width: 900px;

    margin: 0 auto;

    color: var(--navy);

    font-size: clamp(
        48px,
        7vw,
        78px
    );

    font-weight: 900;

    letter-spacing: -0.055em;

    line-height: 0.98;
}


/* =========================================================
   17. ARTICLE DECK
   ========================================================= */

.article-deck {
    max-width: 780px;

    margin: 36px auto 0;

    color: var(--muted);

    font-size: clamp(
        20px,
        2.4vw,
        27px
    );

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   18. ARTICLE DATE
   ========================================================= */

.article-date {
    display: block;

    margin: 28px 0 0;

    color: var(--text);

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.03em;
}


/* =========================================================
   19. ARTICLE CONTENT
   ========================================================= */

.article-content {
    width: min(
        calc(100% - 40px),
        var(--article-width)
    );

    margin: 0 auto;

    padding: 0 0 80px;
}


/* =========================================================
   20. ARTICLE SECTIONS
   ========================================================= */

.article-section {
    margin: 0 0 70px;
}

.article-section:last-child {
    margin-bottom: 0;
}


/* =========================================================
   21. ARTICLE PARAGRAPHS
   ========================================================= */

.article-content p {
    margin: 0 0 1.6rem;

    color: var(--text);

    font-size: 1.15rem;

    line-height: 1.8;
}

.article-content .lead-paragraph {
    margin-bottom: 1.6rem;

    color: var(--navy);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.7;
}

.story-note {
    color: var(--muted) !important;

    font-size: 1.05rem !important;

    font-style: italic;
}


/* =========================================================
   22. ARTICLE SECTION HEADINGS
   ========================================================= */

.section-heading {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin: 0 0 30px;
}

.section-number {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-top: 3px;

    background: var(--orange);

    color: var(--white);

    border-radius: 50%;

    font-size: 15px;

    font-weight: 850;

    line-height: 1;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 36px;

    font-weight: 850;

    letter-spacing: -0.035em;

    line-height: 1.15;
}


/* =========================================================
   23. FEATURED QUOTE
   ========================================================= */

.featured-quote {
    margin: 42px 0;

    padding: 30px 34px;

    background: var(--light-blue);

    border-left: 6px solid var(--orange);

    border-radius:
        0
        var(--radius)
        var(--radius)
        0;

    color: var(--navy);
}

.featured-quote p {
    margin: 0;

    color: var(--navy);

    font-size: 27px;

    font-weight: 750;

    line-height: 1.45;
}


/* =========================================================
   24. SIDE QUOTE
   ========================================================= */

.side-quote {
    margin: 50px 0;

    padding: 30px 34px;

    background: var(--white);

    border-left: 6px solid var(--blue);

    border-radius:
        0
        var(--radius)
        var(--radius)
        0;

    box-shadow: var(--shadow-soft);
}

.side-quote p {
    margin: 0;

    color: var(--navy);

    font-size: 24px;

    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   25. HIGHLIGHT BOX
   ========================================================= */

.highlight-box {
    margin: 50px 0;

    padding: 38px 40px;

    background: var(--navy);

    color: var(--white);

    border-radius: var(--radius);

    box-shadow: var(--shadow-soft);
}

.highlight-label {
    display: block;

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 850;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.highlight-box p {
    margin: 0;

    color: var(--white);

    font-size: 24px;

    font-weight: 650;

    line-height: 1.55;
}


/* =========================================================
   26. BIG IDEA
   ========================================================= */

.big-idea {
    margin: 55px 0;

    padding: 42px;

    background: var(--light-blue);

    border-radius: var(--radius);

    border-top: 5px solid var(--orange);
}

.big-idea-label {
    margin: 0 0 15px !important;

    color: var(--orange) !important;

    font-size: 13px !important;

    font-weight: 850 !important;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.big-idea-text {
    margin: 0 !important;

    color: var(--navy) !important;

    font-size: 26px !important;

    font-weight: 750 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   27. SPECIAL ARTICLE SECTIONS
   ========================================================= */

.emphasis-section,
.personal-section,
.vision-section {
    padding-top: 10px;
}


/* =========================================================
   28. ARTICLE ENDING
   ========================================================= */

.article-ending {
    margin-top: 100px;

    padding: 80px 0;

    border-top: 1px solid var(--border);

    text-align: center;
}

.article-ending .article-kicker {
    margin-bottom: 25px;
}

.article-ending h2 {
    margin: 0 0 35px;

    color: var(--navy);

    font-size: clamp(
        38px,
        5vw,
        58px
    );

    font-weight: 900;

    letter-spacing: -0.045em;

    line-height: 1.05;
}

.article-ending p {
    max-width: 650px;

    margin: 0 auto 18px;

    color: var(--text);

    font-size: 20px;

    line-height: 1.7;
}

.article-ending .ending-statement {
    margin-top: 38px;

    color: var(--navy);

    font-size: 27px;

    font-weight: 800;
}

.article-ending .keep-it-spicy {
    margin-top: 30px;

    color: var(--orange);

    font-size: 34px;

    font-weight: 900;

    letter-spacing: -0.02em;
}


/* =========================================================
   29. ARTICLE FOOTER
   ========================================================= */

.article-footer {
    padding: 50px 0 100px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.article-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    background: var(--orange);

    color: var(--white) !important;

    border-radius: 999px;

    font-size: 15px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.article-button:hover {
    background: var(--orange-dark);

    color: var(--white) !important;

    transform: translateY(-2px);
}


/* =========================================================
   30. SITE FOOTER
   ========================================================= */

.site-footer {
    width: 100%;

    padding: 35px 24px;

    background: var(--navy);

    color: var(--white);

    text-align: center;
}

.site-footer p {
    margin: 0 0 8px;

    color: var(--white);

    font-size: 14px;
}

.site-footer a {
    color: var(--white);

    font-size: 14px;

    text-decoration: none;
}

.site-footer a:hover {
    color: var(--orange);
}


/* =========================================================
   31. ARTICLE / BLOG UTILITY RULES
   ========================================================= */

.desktop-break {
    display: inline;
}


/* =========================================================
   32. TABLET
   ========================================================= */

@media (max-width: 850px) {

    .nav-container,
    .site-header-inner {
        min-height: auto;

        padding: 22px 0;

        flex-direction: column;

        align-items: center;
    }

    .main-navigation,
    .site-nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 20px;
    }

    .main-navigation ul {
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .blog-coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .article-header {
        padding-top: 80px;
    }

    .blog-featured {
        padding: 80px 0;
    }

    .blog-message,
    .blog-more {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 31px;
    }
}


/* =========================================================
   33. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 17px;
    }


    /* Header */

    .nav-container,
    .site-header-inner {
        width: min(
            calc(100% - 32px),
            var(--max-width)
        );

        padding: 18px 0;
    }

    .site-logo,
    .blog-logo {
        font-size: 17px;
    }

    .blog-logo img {
        width: 170px;
    }


    /* Mobile menu */

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;

        width: 100%;

        padding-top: 12px;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul {
        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: 12px;
    }

    .main-navigation a {
        font-size: 15px;
    }


    /* Legacy nav */

    .site-nav {
        gap: 12px 16px;
    }

    .site-nav a {
        font-size: 13px;
    }


    /* Blog hero */

    .blog-hero {
        padding: 70px 16px 65px;
    }

    .blog-eyebrow,
    .blog-page-header .eyebrow {
        font-size: 11px;

        letter-spacing: 0.17em;
    }

    .blog-hero h1 {
        font-size: clamp(
            42px,
            12vw,
            62px
        );

        letter-spacing: -0.045em;
    }

    .blog-intro {
        margin-top: 25px;

        font-size: 19px;
    }

    .blog-intro-secondary {
        font-size: 17px;
    }


    /* Story navigation */

    .story-navigation {
        padding-bottom: 0;
    }

    .story-navigation-inner {
        padding: 28px 24px 30px;
    }

    .story-navigation-heading {
        margin-bottom: 20px;
    }

    .story-navigation-heading h2 {
        font-size: 32px;
    }

    .story-button-grid {
        display: none;
    }

    .story-select-wrapper {
        display: block;
    }

    .story-select-wrapper label {
        display: block;

        margin-bottom: 8px;

        color: var(--navy);

        font-size: 14px;
        font-weight: 800;
    }

    .story-select-wrapper select {
        width: 100%;

        padding: 13px 42px 13px 14px;

        background: var(--light-blue);
        color: var(--navy);

        border: 1px solid var(--border);
        border-radius: 10px;

        font-size: 16px;
        font-weight: 700;
    }


    /* Blog containers */

    .container,
    .blog-container {
        width: min(
            calc(100% - 32px),
            var(--max-width)
        );
    }


    /* Featured */

    .blog-featured {
        padding: 65px 0;
    }

    .blog-section-heading {
        margin-bottom: 28px;
    }

    .blog-section-heading h2 {
        font-size: 38px;
    }

    .blog-featured-content {
        padding: 32px 24px 36px;
    }

    .blog-featured-content h3 {
        font-size: 32px;
    }

    .blog-card-excerpt {
        font-size: 17px;
    }

    .blog-card-meta {
        flex-wrap: wrap;
    }


    /* Blog message */

    .blog-message {
        padding: 70px 0;
    }

    .blog-message h2 {
        font-size: 40px;
    }

    .blog-message-inner > p:not(.blog-eyebrow):not(.blog-message-highlight) {
        font-size: 17px;
    }

    .blog-message-highlight {
        font-size: 29px;
    }


    /* More stories */

    .blog-more {
        padding: 70px 0 80px;
    }

    .blog-coming-soon-grid {
        gap: 18px;

        margin-top: 35px;
    }

    .blog-placeholder-card {
        min-height: auto;

        padding: 28px 24px;
    }


    /* Legacy blog index */

    .blog-page-header {
        padding: 70px 8px 50px;
    }

    .blog-page-header h1 {
        font-size: 50px;
    }

    .blog-grid {
        width: min(
            calc(100% - 32px),
            var(--max-width)
        );
    }


    /* Article */

    .article-header {
        width: min(
            calc(100% - 32px),
            1000px
        );

        padding: 70px 8px 60px;
    }

    .article-kicker {
        gap: 9px;

        font-size: 11px;

        letter-spacing: 0.17em;
    }

    .article-kicker span {
        width: 24px;
        height: 2px;
    }

    .article-header h1 {
        font-size: clamp(
            42px,
            12vw,
            62px
        );

        letter-spacing: -0.045em;
    }

    .desktop-break {
        display: none;
    }

    .article-deck {
        margin-top: 25px;

        font-size: 19px;
    }

    .article-date {
        font-size: 14px;
    }

    .article-content {
        width: min(
            calc(100% - 30px),
            var(--article-width)
        );

        padding-bottom: 60px;
    }

    .article-content p {
        font-size: 1.05rem;

        line-height: 1.75;
    }

    .article-content .lead-paragraph {
        font-size: 20px;
    }

    .article-section {
        margin-bottom: 55px;
    }

    .section-heading {
        gap: 13px;

        margin-bottom: 24px;
    }

    .section-number {
        width: 40px;
        height: 40px;

        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .featured-quote,
    .side-quote {
        margin: 35px 0;

        padding: 24px;
    }

    .featured-quote p {
        font-size: 21px;
    }

    .side-quote p {
        font-size: 20px;
    }

    .highlight-box {
        margin: 40px 0;

        padding: 28px 24px;
    }

    .highlight-box p {
        font-size: 20px;
    }

    .big-idea {
        margin: 40px 0;

        padding: 30px 24px;
    }

    .big-idea-text {
        font-size: 21px !important;
    }

    .article-ending {
        margin-top: 70px;

        padding: 60px 0;
    }

    .article-ending h2 {
        font-size: 38px;
    }

    .article-ending p {
        font-size: 18px;
    }

    .article-ending .ending-statement {
        font-size: 23px;
    }

    .article-ending .keep-it-spicy {
        font-size: 29px;
    }

    .article-footer {
        padding-bottom: 70px;
    }
}


/* =========================================================
   34. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
