/* Momo Trust Display from Fontsource CDN */
@font-face {
    font-family: 'Momo Trust Display';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/momo-trust-display@latest/latin-400-normal.woff2) format('woff2'),
         url(https://cdn.jsdelivr.net/fontsource/fonts/momo-trust-display@latest/latin-400-normal.woff) format('woff');
}

:root {
    --pink: #FF1493;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #fff4fa;
    --gray-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo:hover {
    color: var(--pink);
}

.logo-accent {
    color: var(--pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    position: relative;
    top: 1px;
    transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
    color: var(--pink);
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    margin-top: 1rem;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background-color: var(--gray-light);
    color: var(--pink);
}

/* Sections */
section {
    padding: 4rem 2rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero */
#hero {
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--pink);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-subhead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: var(--black);
    max-width: 700px;
    font-weight: 400;
}

/* Hero CTA */
#hero-cta {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, rgba(255, 20, 147, 0.08) 100%);
    position: relative;
}

#hero-cta::before,
#hero-cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
}

#hero-cta::before {
    top: 0;
}

#hero-cta::after {
    bottom: 0;
}

.hero-cta-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-cta-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    margin: 0;
}

.hero-cta-button {
    display: inline-block;
    background-color: var(--pink);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-cta-button:hover {
    background-color: var(--black);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .hero-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Section Styling */
.section-title {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--black);
    max-width: 700px;
    margin-bottom: 0;
}

.intro-with-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.intro-text {
    flex: 1;
}

.intro-icon {
    width: 120px;
    height: auto;
}

@media (max-width: 768px) {
    .intro-with-image {
        flex-direction: column;
        text-align: center;
    }

    .intro-icon {
        width: 80px;
        order: -1;
    }
}

.section-content p {
    margin-bottom: 1.75rem;
    color: var(--black);
}

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

/* About section with subtle background */
#about {
    background: var(--gray-light);
    position: relative;
}

.about-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-layout .section-content {
    flex: 1;
}

.about-image {
    flex-shrink: 0;
    width: 225px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.2), transparent);
}

/* Call to Action */
#contact {
    background: var(--black);
    color: var(--white);
}

#contact .section-content p {
    color: var(--white);
}

.email-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background-color: var(--pink);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    margin: 1.5rem 0 0 0;
    transition: background-color 0.2s ease;
}

.email-link:hover {
    background-color: var(--white);
    color: var(--pink);
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Email copied notification */
.email-copied {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--black);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    15% { opacity: 1; transform: translateX(-50%) translateY(0); }
    85% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* Footer */
footer {
    background: var(--black);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.social-links a:hover {
    color: var(--pink);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.1rem;
        text-align: left;
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-dropdown-toggle {
        font-size: 1.1rem;
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-light);
        padding: 0;
        margin: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: 0;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 300px;
    }

    .nav-dropdown-menu li {
        width: 100%;
    }

    .nav-dropdown-menu a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-left: 3px solid var(--pink);
        white-space: normal;
        width: 100%;
    }

    section {
        padding: 5rem 1.5rem;
    }

    #hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 5rem;
    }

    .hero-headline {
        margin-bottom: 1.5rem;
    }

    .about-layout {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .about-image {
        width: 160px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-headline {
        font-size: 1.9rem;
    }

    .hero-subhead {
        font-size: 1.05rem;
    }

    .email-link {
        font-size: 1.2rem;
    }
}

/* Scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 70px;
}

/* ========================================
   Subpage Styles (Workshops, Writing, etc.)
   ======================================== */

/* Page Hero - for subpages */
.page-hero {
    padding-top: 140px;
    padding-bottom: 5rem;
}

.page-hero .hero-headline {
    margin-bottom: 2.5rem;
}

.page-hero .hero-subhead {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pink);
    margin-top: 2rem;
}

/* Workshop Sections */
.workshop-section {
    padding: 5rem 2rem;
}

.workshop-section.alt-bg {
    background: var(--gray-light);
}

.workshop-section + .workshop-section:not(.alt-bg)::before,
#workshops-intro::before,
#speaking-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
}

.workshop-section {
    position: relative;
}

.workshop-title {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.workshop-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.workshop-audience {
    margin-bottom: 1.5rem;
    color: var(--black);
}

.workshop-audience strong {
    color: var(--black);
}

.workshop-outcomes-label {
    margin-bottom: 0.75rem;
    color: var(--black);
}

.workshop-outcomes {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.workshop-outcomes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.workshop-outcomes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background-color: var(--pink);
}

.workshop-details {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Why this works toggle */
.why-this-works {
    margin-top: 1.5rem;
}

.why-this-works summary {
    cursor: pointer;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.85rem;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--pink);
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.why-this-works summary::-webkit-details-marker {
    display: none;
}

.why-this-works summary::after {
    content: '+';
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
    top: -0.1em;
}

.why-this-works[open] summary::after {
    content: '−';
}

.why-this-works summary:hover {
    background-color: var(--pink);
    color: var(--white);
}

.why-content {
    margin-top: 1rem;
    padding-left: 0;
    color: var(--black);
    font-size: 0.85rem;
    line-height: 1.7;
}

.why-content p {
    margin-bottom: 1rem;
}

.why-content p:last-child {
    margin-bottom: 0;
}

/* Mobile adjustments for workshops */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 120px;
        padding-bottom: 4rem;
    }

    .workshop-section {
        padding: 4rem 1.5rem;
    }

    .workshop-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .workshop-title {
        font-size: 1.2rem;
    }

    .workshop-description {
        font-size: 1rem;
    }
}

/* ========================================
   Writing Page — Article Cards
   ======================================== */

.article-card {
    padding: 2rem 0;
}

.article-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-text);
}

.article-card-pub {
    font-weight: 600;
    color: var(--black);
}

.article-card-dot {
    color: var(--gray-text);
}

.article-card-date {
    color: var(--gray-text);
}

.article-card-coauthor {
    color: var(--gray-text);
    font-style: italic;
}

.article-card-title {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.article-card-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-card-title a:hover {
    color: var(--pink);
}

.article-card-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-text);
    max-width: 680px;
    margin-bottom: 0.9rem;
}

.article-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-card-link.hosted {
    color: var(--pink);
}

.article-card-link.hosted:hover {
    color: var(--black);
}

.article-card-link.external {
    color: var(--gray-text);
}

.article-card-link.external:hover {
    color: var(--pink);
}

.article-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.15), transparent);
}

.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
}

/* ========================================
   Writing Page — Books Section
   ======================================== */

.book-divider {
    border: none;
    border-top: 1px solid var(--border-color, #e5e7eb);
    margin: 3rem 0;
}

.book-entry {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.book-cover {
    flex-shrink: 0;
    width: 140px;
}

.book-cover a {
    display: block;
}

.book-cover img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.book-cover img:hover {
    transform: translateY(-2px);
}

.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 1rem;
    border-radius: 2px;
}

.book-info {
    flex: 1;
}

.book-title {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 0.4rem;
}

.book-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 0.3rem;
}

.book-meta {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.book-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--black);
    margin-bottom: 1rem;
    max-width: 580px;
}

.book-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.book-link:hover {
    color: var(--pink);
}

@media (max-width: 600px) {
    .book-entry {
        flex-direction: column;
        gap: 1.5rem;
    }

    .book-cover {
        width: 110px;
    }
}

/* ========================================
   Individual Article Pages
   ======================================== */

.article-page-hero {
    padding-top: 140px;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-page-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.article-page-pub {
    font-weight: 600;
    color: var(--black);
}

.article-page-title {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--pink);
    margin-bottom: 1rem;
    max-width: 760px;
}

.article-page-byline {
    font-size: 0.95rem;
    color: var(--gray-text);
}

.article-page-byline strong {
    color: var(--black);
    font-weight: 600;
}

.article-body {
    padding: 3rem 2rem 4rem;
}

.article-body .container {
    max-width: 680px;
}

.article-body p {
    margin-bottom: 1.6rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
}

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

.article-body h2 {
    font-family: 'Momo Trust Display', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.6rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body a {
    color: var(--pink);
    text-decoration: underline;
    text-decoration-color: rgba(255, 20, 147, 0.3);
}

.article-body a:hover {
    text-decoration-color: var(--pink);
}

.article-back {
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.article-back a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-back a:hover {
    color: var(--pink);
}

.article-post-nav {
    padding: 2rem 2rem;
    background: white;
    position: relative;
}

.article-post-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.3), transparent);
}

.article-post-nav-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.article-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--gray-text);
    max-width: 45%;
    transition: color 0.2s ease;
}

.article-post-nav-link.next {
    text-align: right;
    margin-left: auto;
}

.article-post-nav-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-post-nav-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.article-post-nav-link:hover {
    color: var(--pink);
}

@media (max-width: 600px) {
    .article-post-nav-inner {
        flex-direction: column;
        gap: 1.25rem;
    }

    .article-post-nav-link,
    .article-post-nav-link.next {
        max-width: 100%;
        text-align: left;
        margin-left: 0;
    }
}

.article-source-note {
    font-size: 0.85rem;
    color: var(--gray-text);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .article-page-hero {
        padding-top: 120px;
        padding-bottom: 2.5rem;
    }

    .article-body {
        padding: 3rem 1.5rem 4rem;
    }
}
