:root {
    /* Brand palette — Bold professional, burnt orange accent */
    --brand-primary: #D8552C;        /* burnt orange */
    --brand-primary-dark: #B43F1F;
    --brand-primary-soft: #FBE9DF;
    --brand-dark: #0A0A0A;            /* near-black ink */
    --brand-light: #FAFAF7;           /* warm paper */
    --brand-accent: #1F1F1F;
    --brand-neutral: #6B6B6B;

    --white: #FFFFFF;
    --light-gray: #E5E2DB;
    --medium-gray: #9B9B9B;
    --dark-gray: #2C2C2C;
    --success: #2F7D5F;
    --error: #C0392B;
    --warning: #C28720;
    --info: #2C5F8A;

    --display-font: 'Fraunces', Georgia, 'Times New Roman', serif;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family: var(--body-font);

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 30px rgba(0,0,0,0.08);
}

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--body-font);
    color: var(--brand-dark);
    background: var(--brand-light);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 17px;
    letter-spacing: -0.005em;
}

/* Primary */
.cms-bg-primary { background-color: var(--brand-primary) !important; }
.cms-text-primary { color: var(--brand-primary) !important; }
.cms-border-primary { border-color: var(--brand-primary) !important; }

/* Dark */
.cms-bg-dark { background-color: var(--brand-dark) !important; }
.cms-text-dark { color: var(--brand-dark) !important; }
.cms-border-dark { border-color: var(--brand-dark) !important; }

/* Light */
.cms-bg-light { background-color: var(--brand-light) !important; }
.cms-text-light { color: var(--brand-light) !important; }
.cms-border-light { border-color: var(--brand-light) !important; }

/* Accent */
.cms-bg-accent { background-color: var(--brand-accent) !important; }
.cms-text-accent { color: var(--brand-accent) !important; }
.cms-border-accent { border-color: var(--brand-accent) !important; }

/* Neutral */
.cms-text-neutral { color: var(--brand-neutral) !important; }
.cms-bg-neutral { background-color: var(--brand-neutral) !important; }
.cms-border-neutral { border-color: var(--brand-neutral) !important; }

/* Surfaces */
.cms-surface-paper { background-color: var(--brand-light); }
.cms-surface-ink { background-color: var(--brand-dark); color: var(--brand-light); }

/* Typography — display uses serif for confident headlines */
.cms-display {
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.cms-h1 {
    font-family: var(--display-font);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
}

.cms-h2 {
    font-family: var(--display-font);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.cms-h3 {
    font-family: var(--display-font);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 12px;
}

.cms-h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.cms-h5 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
}

.cms-body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 12px;
    color: var(--dark-gray);
}

.cms-lede {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--brand-neutral);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
}

.cms-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 6px;
    color: var(--brand-neutral);
}

.cms-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-primary);
    margin: 0 0 16px;
}

/* Links */
.cms-link {
    color: var(--brand-primary);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: color 150ms ease;
}
.cms-link:hover { color: var(--brand-primary-dark); }

/* Buttons */
.cms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
    border: 1px solid transparent;
    letter-spacing: 0;
    line-height: 1;
}

.cms-btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
    border-color: var(--brand-primary);
}
.cms-btn-primary:hover {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}

.cms-btn-dark {
    background-color: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
}
.cms-btn-dark:hover { background-color: #1f1f1f; }

.cms-btn-ghost {
    background-color: transparent;
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}
.cms-btn-ghost:hover {
    background-color: var(--brand-dark);
    color: var(--white);
}

.cms-btn-ghost-light {
    background-color: transparent;
    color: var(--brand-light);
    border-color: rgba(250,250,247,0.4);
}
.cms-btn-ghost-light:hover {
    background-color: var(--brand-light);
    color: var(--brand-dark);
    border-color: var(--brand-light);
}

.cms-btn-disabled { opacity: 0.6; cursor: not-allowed; }
[data-members-visible][hidden] { display: none !important; }

/* Cards */
.cms-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.cms-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-dark);
}

.cms-card-title { font-family: var(--display-font); font-size: 24px; font-weight: 500; line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.015em; }
.cms-card-content { font-size: 16px; line-height: 1.6; color: var(--dark-gray); }

/* Forms */
.cms-form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--brand-dark);
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    transition: border-color 150ms ease, box-shadow 150ms ease;
    box-sizing: border-box;
}
.cms-form-control:hover { border-color: var(--brand-dark); }
.cms-form-control:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(216,85,44,0.15);
}

.cms-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--brand-dark);
    letter-spacing: 0.02em;
}

.cms-form-textarea {
    width: 100%;
    min-height: 140px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--body-font);
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    resize: vertical;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    box-sizing: border-box;
    color: var(--brand-dark);
}
.cms-form-textarea:focus {
    border-color: var(--brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(216,85,44,0.15);
}

.cms-error-message { font-size: 14px; margin-top: 4px; color: var(--error); }
.cms-success-message { font-size: 14px; margin-top: 4px; color: var(--success); }

/* Section spacing */
.cms-section { padding: 96px 0; }
@media (max-width: 768px) {
    .cms-section { padding: 64px 0; }
}

/* Container */
.cms-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.cms-container-narrow { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Site post grid (used by Faster blog renderer fallbacks) */
.site-post-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.site-post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-dark);
}

/* Responsive type */
@media (max-width: 768px) {
    body { font-size: 16px; }
    .cms-h1 { font-size: 40px; line-height: 1.1; }
    .cms-h2 { font-size: 30px; }
    .cms-h3 { font-size: 24px; }
    .cms-lede { font-size: 18px; }
    .cms-btn { padding: 12px 22px; font-size: 14px; }
}

/* v2 shell and shared dynamic-content styling. */
#main-content { min-height: 50vh; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.post-card {
    display: block;
    color: var(--brand-dark);
    text-decoration: none;
}
.post-card-img {
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-primary-soft), var(--brand-light));
    margin-bottom: 20px;
}
.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}
.post-card:hover .post-card-img img { transform: scale(1.025); }
.post-card .post-meta {
    display: flex;
    gap: 8px;
    color: var(--brand-neutral);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.post-card h3 {
    font-family: var(--display-font);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 10px;
}
.post-card p { color: var(--brand-neutral); margin: 0; }
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 56px;
}
.pagination a { color: var(--brand-primary); font-weight: 600; }

.page-writing #ai_writing { background: var(--brand-light); }
.page-writing .writing-hero {
    padding: 144px 0 72px;
    background: var(--brand-dark);
    color: var(--brand-light);
}
.page-writing .writing-hero h1 {
    max-width: 820px;
    color: var(--brand-light);
    font-family: var(--display-font);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0 0 24px;
}
.page-writing .writing-hero h1 em { color: var(--brand-primary); font-weight: 400; }
.page-writing .writing-hero .cms-lede { color: rgba(250, 250, 247, 0.75); }

.archive-hero {
    padding: 144px 0 72px;
    background: var(--brand-dark);
    color: var(--brand-light);
}
.archive-hero h1 {
    font-family: var(--display-font);
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin: 0 0 24px;
    color: var(--brand-light);
}
.archive-hero .cms-lede { color: rgba(250, 250, 247, 0.75); }
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 56px;
}
.archive-card {
    display: block;
    padding: 30px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--brand-dark);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}
.archive-card:hover { border-color: var(--brand-primary); transform: translateY(-2px); }
.archive-card h2 { font-family: var(--display-font); font-size: 28px; margin: 0 0 10px; }
.archive-card p { color: var(--brand-neutral); margin: 0; }

.article-shell {
    overflow: hidden;
    padding-bottom: 112px;
    background: #fff;
}
.article-hero {
    width: 100%;
    height: clamp(540px, 74vh, 820px);
    margin: 0;
    padding-top: 80px;
    overflow: hidden;
    background: #dedbd4;
}
.article-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.article-header {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), 1120px);
    margin: 0 auto;
    padding: 54px 64px 48px;
    background: #fff;
    color: var(--brand-dark);
    box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
}
.article-shell--featured .article-header { margin-top: -148px; }
.article-header h1 {
    max-width: 980px;
    margin: 0 0 30px;
    color: var(--brand-dark);
    font-family: var(--display-font);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}
.article-title-card { min-width: 0; }
.article-topic-link { color: inherit; text-decoration: none; }
.article-topic-link:hover { color: var(--brand-primary-dark); }
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    padding-top: 22px;
    border-top: 1px solid var(--light-gray);
    color: var(--brand-neutral);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.article-author { color: var(--brand-dark); }
.article-meta-label { color: var(--brand-neutral); font-weight: 500; }
.article-date::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 24px 3px 0;
    border-radius: 50%;
    background: var(--brand-primary);
}
.article-shell--plain .article-header {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 144px 24px 76px;
    background: var(--brand-dark);
    color: var(--brand-light);
    box-shadow: none;
}
.article-shell--plain .article-title-card {
    width: min(100%, 980px);
    margin: 0 auto;
}
.article-shell--plain .article-header h1 { color: var(--brand-light); }
.article-shell--plain .article-meta {
    border-color: rgba(250, 250, 247, 0.15);
    color: rgba(250, 250, 247, 0.65);
}
.article-shell--plain .article-author { color: var(--brand-light); }

.article-content {
    width: min(calc(100% - 48px), 860px);
    margin: 0 auto;
    padding-top: 76px;
}
.article-body {
    color: #282724;
    font-size: 19px;
    line-height: 1.82;
    letter-spacing: -0.008em;
}
.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--brand-dark);
    font-family: var(--display-font);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.14;
}
.article-body h2 {
    margin: 1.9em 0 0.62em;
    font-size: clamp(36px, 4vw, 48px);
}
.article-body h3 {
    margin: 1.85em 0 0.55em;
    font-size: clamp(27px, 3vw, 32px);
}
.article-body h4 { margin: 1.7em 0 0.5em; font-size: 23px; }
.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote { margin: 0 0 1.55em; }
.article-body ul,
.article-body ol { padding-left: 1.35em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.5em; padding-left: 0.2em; }
.article-body figure {
    margin: 52px -72px;
}
.article-body img {
    display: block;
    max-width: 100%;
    height: auto;
}
.article-body figcaption {
    margin-top: 12px;
    color: var(--brand-neutral);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}
.article-body a { color: var(--brand-primary); text-underline-offset: 3px; }
.article-body hr {
    width: 72px;
    margin: 64px 0;
    border: 0;
    border-top: 2px solid var(--brand-primary);
}
.article-body blockquote {
    margin: 56px -36px;
    padding: 10px 0 10px 34px;
    border-left: 3px solid var(--brand-primary);
    color: var(--brand-dark);
    font-family: var(--display-font);
    font-size: 27px;
    line-height: 1.5;
}

.member-gate {
    width: min(100%, 620px);
    margin: 56px auto 0;
    padding: 44px 48px 36px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.member-gate__lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: var(--radius-full);
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
}
.member-gate .cms-eyebrow { margin-bottom: 10px; }
.member-gate h2 {
    margin: 0 auto 14px;
    font-family: var(--display-font);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.member-gate__copy {
    max-width: 440px;
    margin: 0 auto 26px;
    color: var(--brand-neutral);
}
.member-gate__benefits {
    display: grid;
    gap: 10px;
    margin: 32px -48px 0;
    padding: 28px 48px 0;
    border-top: 1px solid var(--light-gray);
    list-style: none;
    color: var(--brand-neutral);
    text-align: left;
    font-size: 14px;
}
.member-gate__benefits li {
    position: relative;
    padding-left: 22px;
}
.member-gate__benefits li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: var(--radius-full);
    background: var(--brand-primary);
}
.member-gate__signin {
    margin: 24px 0 0;
    color: var(--brand-neutral);
    font-size: 14px;
}

.auth-modal[hidden],
.auth-form-field[hidden],
.auth-message[hidden],
.auth-quick-link[hidden],
.auth-field-error[hidden] { display: none; }

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
}
.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(10, 10, 10, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.auth-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 480px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 42px;
    border-radius: var(--radius-lg);
    background: var(--brand-light);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}
.auth-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius-full);
    color: var(--brand-neutral);
    background: transparent;
}
.auth-modal__close:hover { color: var(--brand-dark); background: var(--brand-primary-soft); }
.auth-modal__close svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.auth-modal__brand {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--brand-light);
    background: var(--brand-dark);
    font-family: var(--display-font);
    font-size: 28px;
    font-weight: 600;
}
.auth-modal__brand span { color: var(--brand-primary); }
.auth-modal__dialog h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.auth-modal__intro { margin: 12px 0 26px; color: var(--brand-neutral); }
.auth-modal__form { display: grid; gap: 16px; }
.auth-modal__form .auth-submit,
.auth-modal__form .auth-quick-link { width: 100%; }
.auth-modal__switch { margin: 22px 0 0; color: var(--brand-neutral); font-size: 15px; font-weight: 500; }
.auth-modal__switch button {
    border: 0;
    padding: 0;
    color: var(--brand-primary);
    background: transparent;
    font: inherit;
    font-weight: 700;
}
.auth-modal__switch button:hover { color: var(--brand-primary-dark); }
.has-auth-modal { overflow: hidden; }

.auth-form-field { display: grid; gap: 8px; }
.auth-form-field label { font-size: 13px; font-weight: 600; color: var(--brand-dark); }
.auth-form-field input {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--brand-dark);
    background: var(--white);
    font: inherit;
}
.auth-form-field input:focus {
    outline: 3px solid rgba(216, 85, 44, 0.15);
    border-color: var(--brand-primary);
}
.auth-form-field input[aria-invalid="true"] { border-color: var(--error); }
.auth-field-error { margin: 0; color: var(--error); font-size: 13px; font-weight: 600; }
.auth-message { margin: 0; color: var(--brand-neutral); font-size: 14px; font-weight: 600; }
.auth-message[data-state="success"] { color: var(--success); }
.auth-message[data-state="error"] { color: var(--error); }
.auth-submit:disabled,
[data-members-logout]:disabled { cursor: wait; opacity: 0.65; }

.auth-notices {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10020;
    display: grid;
    gap: 10px;
    width: min(380px, calc(100vw - 40px));
    pointer-events: none;
}
.auth-notice {
    padding: 14px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--brand-dark);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    font-size: 14px;
    font-weight: 600;
    transition: opacity 180ms ease, transform 180ms ease;
}
.auth-notice--success { border-color: rgba(47, 125, 95, 0.3); color: var(--success); background: #f3faf6; }
.auth-notice--error { border-color: rgba(192, 57, 43, 0.28); color: var(--error); background: #fff7f6; }
.auth-notice.is-hiding { opacity: 0; transform: translateY(8px); }

.auth-page-hero .cms-lede { color: rgba(250, 250, 247, 0.75); }
.auth-page-section { padding: 80px 0 104px; background: var(--brand-light); }
.auth-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 64px;
    align-items: start;
}
.auth-page-panel {
    padding: 40px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.auth-page-panel h2,
.auth-page-aside h2 {
    margin: 0 0 12px;
    font-family: var(--display-font);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.auth-page-copy,
.auth-account-email { margin: 0 0 28px; color: var(--brand-neutral); }
.auth-page-form { display: grid; gap: 18px; }
.auth-page-form .cms-eyebrow,
.auth-page-form h2,
.auth-page-form .auth-page-copy { margin-bottom: 0; }
.auth-page-submit,
.auth-page-form .auth-quick-link { width: 100%; margin-top: 2px; }
.auth-page-aside { padding: 18px 0; color: var(--brand-neutral); }
.auth-page-aside h2 { color: var(--brand-dark); }
.auth-page-aside ul { display: grid; gap: 18px; margin: 28px 0; padding: 0; list-style: none; }
.auth-page-aside li { position: relative; padding-left: 28px; }
.auth-page-aside li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand-primary);
}
.auth-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

@media (max-width: 768px) {
    .archive-grid { grid-template-columns: 1fr; }
    .archive-hero,
    .page-writing .writing-hero { padding: 112px 0 56px; }
    .article-shell { padding-bottom: 80px; }
    .article-hero {
        height: clamp(390px, 62vh, 560px);
        padding-top: 80px;
    }
    .article-shell--featured .article-header { margin-top: -72px; }
    .article-header {
        width: calc(100% - 24px);
        padding: 34px 28px 30px;
        box-shadow: 0 18px 44px rgba(10, 10, 10, 0.11);
    }
    .article-header h1 {
        margin-bottom: 24px;
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.04;
    }
    .article-meta { gap: 10px 14px; padding-top: 18px; font-size: 12px; }
    .article-date::before { margin-right: 14px; }
    .article-shell--plain .article-header { padding: 116px 18px 58px; }
    .article-content {
        width: calc(100% - 36px);
        padding-top: 52px;
    }
    .article-body { font-size: 17.5px; line-height: 1.76; }
    .article-body h2 { font-size: 34px; }
    .article-body h3 { font-size: 27px; }
    .article-body figure { margin: 38px 0; }
    .article-body blockquote { margin: 42px 0; padding-left: 24px; font-size: 24px; }
    .article-body hr { margin: 48px 0; }
    .member-gate { margin-top: 40px; padding: 36px 24px 30px; }
    .member-gate h2 { font-size: 30px; }
    .member-gate__benefits { margin-right: -24px; margin-left: -24px; padding-right: 24px; padding-left: 24px; }
    .auth-modal { padding: 14px; }
    .auth-modal__dialog { max-height: calc(100vh - 28px); padding: 36px 24px 28px; }
    .auth-modal__dialog h2 { font-size: 34px; }
    .auth-page-section { padding: 56px 0 72px; }
    .auth-page-layout { grid-template-columns: 1fr; gap: 32px; }
    .auth-page-panel { padding: 28px 22px; }
    .auth-page-aside { padding: 0; }
}

@media (max-width: 480px) {
    .article-hero { height: 500px; }
    .article-header { padding: 30px 24px 28px; }
    .article-header h1 { font-size: clamp(32px, 9.3vw, 40px); }
    .article-meta { gap: 9px 12px; letter-spacing: 0.045em; }
    .article-date::before { margin-right: 12px; }
    .article-content { width: calc(100% - 32px); }
}
