/* =========================================================
   GIZINT — The Daily Brief
   Custom Ghost Theme Stylesheet v1.0
   Gizmet Dev Ltd
   ========================================================= */

/* ---------------------------------------------------------
   DESIGN TOKENS
   --------------------------------------------------------- */

:root {
    --ghost-accent-color: #9a7a1c;

    --paper:     #f5f3ec;
    --paper-2:   #efebe2;
    --paper-3:   #e6e0d4;
    --white:     #ffffff;

    --ink:       #16203a;
    --ink-2:     #24304d;
    --ink-3:     #5d6678;
    --ink-4:     #8d94a2;

    --line:      #d9d3c6;
    --line-soft: #e6e1d7;

    --gold:      #9a7a1c;
    --gold-soft: rgba(154, 122, 28, 0.12);

    --max:       1220px;
    --reading:   760px;

    --font-headline: "Cormorant Garamond", Georgia, serif;
    --font-mono:     "IBM Plex Mono", monospace;
    --font-ui:       Inter, system-ui, sans-serif;
    --font-body:     Georgia, "Times New Roman", serif;
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

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

html,
body {
    background: var(--paper);
}

body {
    color: var(--ink);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
video,
iframe {
    border-radius: 0;
}

button,
input,
textarea,
select,
a.gh-button,
.gh-button,
.kg-signup-card,
.kg-button-card a.kg-btn {
    border-radius: 0;
    box-shadow: none;
}

::selection {
    background: var(--gold-soft);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--paper);
}

::-webkit-scrollbar-thumb {
    background: #c8c1b0;
}

::-webkit-scrollbar-thumb:hover {
    background: #aea594;
}

/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */

.gh-main,
.gh-outer {
    background: var(--paper);
}

.gh-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 4vw;
}

.gh-canvas {
    max-width: var(--reading);
    margin: 0 auto;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.gh-head {
    position: relative;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.gh-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--ink);
}

.gh-head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
}

.gh-head-brand {
    flex-shrink: 0;
}

.gh-head-logo {
    font-family: var(--font-headline);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
}

.gh-head-logo img {
    max-height: 42px;
    width: auto;
}

.gh-head-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* Ghost {{navigation}} outputs <ul><li> — reset list styles */
.gh-head-menu ul,
.gh-foot-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.gh-head-menu li,
.gh-foot-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-head-menu a {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gh-head-menu a:hover {
    color: var(--gold);
}

.gh-head-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gh-head-actions a {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gh-head-actions a:hover {
    color: var(--gold);
}

.gh-head-actions .gh-button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink-3);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gh-head-actions .gh-button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gh-head-actions .gh-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.gh-head-actions .gh-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Portal buttons */
a[data-portal="signin"] {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-decoration: none;
}

a[data-portal="signin"]:hover {
    color: var(--gold);
}

a[data-portal="signup"] {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}

a[data-portal="signup"]:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ---------------------------------------------------------
   HERO — CENTERED EDITORIAL
   --------------------------------------------------------- */

.gh-cover {
    background: var(--paper);
    padding: 88px 4vw 48px;
    position: relative;
}

.gh-cover-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

/* Microline above title */
.gh-cover-microline {
    display: block;
    margin: 0 auto 32px auto;
    color: var(--ink-3);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Gold mark under title */
.gh-cover-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    background: var(--gold);
    margin: 22px auto 0 auto;
}

.gh-cover-title {
    max-width: 820px;
    margin: 0 auto 24px auto;
    font-family: var(--font-headline);
    font-size: clamp(52px, 6.5vw, 82px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-transform: none;
}

.gh-cover-description {
    max-width: 620px;
    margin: 0 auto 42px auto;
    color: var(--ink-3);
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 1.68;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
}

.gh-cover-subline {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--ink-4);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.5;
}

/* Gold divider between hero and feed */
.gh-cover + .gh-outer::before {
    content: "";
    display: block;
    width: min(1160px, calc(100% - 64px));
    height: 2px;
    background: var(--gold);
    margin: 28px auto 0 auto;
}

/* ---------------------------------------------------------
   FORMS (hero + CTA)
   --------------------------------------------------------- */

form[data-members-form] {
    max-width: 560px;
    margin: 4px auto 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
}

form[data-members-form] input[type="email"] {
    flex: 1;
    min-height: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--ink);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 16px;
    padding: 0 16px;
}

form[data-members-form] input::placeholder {
    color: var(--ink-4);
    opacity: 1;
}

form[data-members-form] input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px var(--gold-soft);
    position: relative;
    z-index: 2;
}

form[data-members-form] button[type="submit"] {
    min-height: 52px;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    border-left: none;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

form[data-members-form] button[type="submit"]:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Form loading state */
form[data-members-form].loading button[type="submit"] {
    opacity: 0.6;
    pointer-events: none;
}

/* Form success state */
form[data-members-form].success {
    position: relative;
}

form[data-members-form].success input,
form[data-members-form].success button {
    opacity: 0;
    pointer-events: none;
}

form[data-members-form].success::after {
    content: "Check your inbox.";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Form error state */
form[data-members-form].error::after {
    content: "Something went wrong. Try again.";
    display: block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a04040;
    text-align: center;
}

/* ---------------------------------------------------------
   SECTION LABELS (feed headers, archive titles)
   --------------------------------------------------------- */

.gh-feed-title,
.gh-archive-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding: 0;
    border: none;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}

.gh-feed-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.gh-feed-header {
    padding-top: 32px;
}

/* ---------------------------------------------------------
   FEED — POST CARDS
   --------------------------------------------------------- */

.gh-feed {
    padding-top: 0;
    padding-bottom: 42px;
}

.gh-card {
    position: relative;
    display: block;
    background: transparent;
    border: none;
    border-top: 1px solid var(--line-soft);
    padding: 34px 0 30px 0;
    margin: 0;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.gh-card:last-child {
    border-bottom: 1px solid var(--line-soft);
}

.gh-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    width: 3px;
    height: calc(100% - 64px);
    background: transparent;
    transition: background 0.2s ease;
}

.gh-card:hover {
    background: rgba(255, 255, 255, 0.34);
    padding-left: 8px;
}

.gh-card:hover::before {
    background: var(--gold);
}

.gh-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gh-card-image {
    margin: 0 0 16px 0;
    overflow: hidden;
}

.gh-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--line);
}

.gh-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-3);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gh-card-meta-sep {
    color: var(--ink-4);
}

.gh-card-access {
    color: var(--gold);
    font-weight: 600;
}

.gh-card-title {
    font-family: var(--font-headline);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 10px;
}

.gh-card-excerpt {
    max-width: 920px;
    color: #4d5668;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 400;
    margin: 0;
}

/* ---------------------------------------------------------
   SINGLE POST — ARTICLE
   --------------------------------------------------------- */

.gh-article {
    background: var(--paper);
}

.gh-article-header {
    padding: 64px 4vw 30px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 34px;
}

.gh-article-header .gh-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.gh-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-3);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gh-article-meta a {
    color: var(--ink-3);
    text-decoration: none;
}

.gh-article-meta a:hover {
    color: var(--gold);
}

.gh-article-meta-sep {
    color: var(--ink-4);
}

.gh-article-title {
    max-width: 860px;
    font-family: var(--font-headline);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 700;
    color: var(--ink);
    margin-top: 10px;
    margin-bottom: 12px;
}

.gh-article-excerpt {
    max-width: 620px;
    color: var(--ink-3);
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.65;
    margin-top: 16px;
}

/* ---------------------------------------------------------
   ARTICLE FEATURE IMAGE
   --------------------------------------------------------- */

.gh-article-image {
    max-width: var(--max);
    margin: 0 auto 34px;
    padding: 0 4vw;
}

.gh-article-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--line);
}

.gh-article-image figcaption {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-4);
    text-align: center;
    margin-top: 12px;
}

/* ---------------------------------------------------------
   CONTENT — READING TYPOGRAPHY
   --------------------------------------------------------- */

.gh-content {
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.88;
    font-weight: 400;
    padding: 0 4vw 48px;
}

.gh-content p {
    color: var(--ink);
    margin-bottom: 1.3em;
}

.gh-content strong,
.gh-content b {
    color: var(--ink);
    font-weight: 700;
}

.gh-content h2 {
    font-family: var(--font-headline);
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
    margin-top: 2.15em;
    margin-bottom: 0.5em;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    color: var(--ink);
}

.gh-content h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2.3em;
    margin-bottom: 1em;
}

.gh-content h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.gh-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(154, 122, 28, 0.35);
}

.gh-content a:hover {
    border-bottom-color: var(--gold);
}

.gh-content blockquote {
    margin: 32px 0;
    padding: 20px 22px;
    background: var(--paper-2);
    border-left: 3px solid var(--ink);
    color: var(--ink);
    font-style: normal;
    font-size: 18px;
    line-height: 1.72;
}

.gh-content blockquote p:first-child::before {
    content: "Assessment";
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.gh-content code {
    background: var(--paper-2);
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 2px 6px;
    font-family: var(--font-mono);
    font-size: 0.92em;
}

.gh-content pre {
    background: var(--ink);
    color: #d7dbe4;
    padding: 24px;
    border: 1px solid var(--ink);
    overflow-x: auto;
}

.gh-content pre code {
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
}

.gh-content hr {
    border: none;
    height: 1px;
    background: var(--line);
    margin: 48px 0;
}

.gh-content ul,
.gh-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.3em;
}

.gh-content li {
    margin-bottom: 0.4em;
}

.gh-content img {
    border: 1px solid var(--line);
    max-width: 100%;
    height: auto;
}

/* Koenig editor card widths */
.kg-width-wide {
    max-width: min(1040px, calc(100vw - 4rem));
    margin-left: auto;
    margin-right: auto;
}

.kg-width-full {
    max-width: none;
    margin-left: calc(-4vw);
    margin-right: calc(-4vw);
    width: calc(100% + 8vw);
}

/* Tables — critical for brief format */
.gh-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border: 1px solid var(--line);
}

.gh-content th {
    background: var(--paper-2);
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 12px 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: left;
}

.gh-content td {
    border: 1px solid var(--line);
    padding: 13px 14px;
    color: var(--ink);
    font-size: 16px;
}

.gh-content tr:nth-child(even) td {
    background: var(--paper-2);
}

/* ---------------------------------------------------------
   LOWER CTA
   --------------------------------------------------------- */

.gh-cta {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 78px 4vw 92px;
    text-align: center;
}

.gh-cta h3 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 14px;
}

.gh-cta h3::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 0 auto;
}

.gh-cta p {
    color: var(--ink-3);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.gh-cta form[data-members-form] {
    margin-top: 30px;
}

/* Ghost built-in upgrade CTA (for paid content) */
.gh-post-upgrade-cta {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 48px 0;
}

.gh-post-upgrade-cta-content {
    background: transparent;
    border: none;
    color: var(--ink);
    text-align: center;
}

.gh-post-upgrade-cta h2 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.04;
    font-weight: 700;
    color: var(--ink);
    border: none;
    padding: 0;
}

.gh-post-upgrade-cta p {
    color: var(--ink-3);
}

/* ---------------------------------------------------------
   ARCHIVE PAGES (tag, author)
   --------------------------------------------------------- */

.gh-archive-header {
    padding: 64px 0 28px;
    text-align: center;
}

.gh-archive-title {
    font-family: var(--font-headline);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 12px;
}

.gh-archive-description {
    max-width: 620px;
    margin: 0 auto;
    color: var(--ink-3);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.65;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */

.gh-foot {
    background: var(--paper);
    border-top: 2px solid var(--ink);
    margin-top: 0;
    padding: 32px 0;
}

.gh-foot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gh-foot-nav {
    display: flex;
    gap: 24px;
}

.gh-foot-nav a {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gh-foot-nav a:hover {
    color: var(--gold);
}

.gh-foot-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-4);
}

.gh-foot-meta a {
    color: var(--ink-4);
    text-decoration: none;
}

.gh-foot-meta a:hover {
    color: var(--gold);
}

.gh-foot-sep {
    margin: 0 8px;
}

/* ---------------------------------------------------------
   PAGINATION
   --------------------------------------------------------- */

.gh-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px 0;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gh-pagination a {
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.gh-pagination a:hover {
    color: var(--gold);
}

.gh-pagination-num {
    color: var(--ink-4);
}

/* ---------------------------------------------------------
   ERROR PAGE
   --------------------------------------------------------- */

.gh-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 64px 4vw;
}

.gh-error-code {
    font-family: var(--font-headline);
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 16px;
}

.gh-error-message {
    font-family: var(--font-ui);
    font-size: 17px;
    color: var(--ink-3);
    margin-bottom: 32px;
}

.gh-error-link {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

.gh-error-link:hover {
    border-bottom: 1px solid var(--gold);
}

/* ---------------------------------------------------------
   COMMENTS
   --------------------------------------------------------- */

.gh-comments {
    padding: 48px 0;
    border-top: 1px solid var(--line);
    margin-top: 32px;
}

/* ---------------------------------------------------------
   KOENIG CARDS
   --------------------------------------------------------- */

.kg-image-card img,
.kg-gallery-image img {
    border: 1px solid var(--line);
}

.kg-image-card figcaption,
.kg-gallery-card figcaption,
.kg-embed-card figcaption {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-4);
    text-align: center;
    margin-top: 12px;
}

.kg-bookmark-card {
    border: 1px solid var(--line);
    background: var(--paper-2);
}

.kg-bookmark-title {
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
}

.kg-bookmark-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-3);
}

.kg-bookmark-metadata {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-4);
}

/* ---------------------------------------------------------
   RESPONSIVE — TABLET
   --------------------------------------------------------- */

@media (max-width: 700px) {
    .gh-cover {
        padding-top: 56px;
        padding-bottom: 32px;
    }

    .gh-cover-title {
        font-size: 44px;
        line-height: 1;
        max-width: 100%;
    }

    .gh-cover-description {
        font-size: 16px;
        max-width: 100%;
    }

    form[data-members-form] {
        max-width: 100%;
        flex-direction: column;
    }

    form[data-members-form] input[type="email"] {
        width: 100%;
    }

    form[data-members-form] button[type="submit"] {
        width: 100%;
        border-left: 1px solid var(--ink);
        margin-top: -1px;
    }

    .gh-article-header {
        padding-top: 42px;
    }

    .gh-cta {
        padding: 48px 4vw 64px;
    }
}

/* ---------------------------------------------------------
   RESPONSIVE — MOBILE
   --------------------------------------------------------- */

@media (max-width: 640px) {
    .gh-head-inner {
        min-height: 72px;
    }

    .gh-head-logo {
        font-size: 26px;
    }

    .gh-head-menu {
        display: none;
    }

    .gh-head-menu a,
    .gh-head-actions a {
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .gh-card-title {
        font-size: 24px;
    }

    .gh-article-title {
        font-size: 42px;
    }

    .gh-content {
        font-size: 18px;
        line-height: 1.8;
    }

    .gh-content h2 {
        font-size: 32px;
    }

    .gh-archive-header {
        padding: 42px 0 20px;
    }
}

/* ---------------------------------------------------------
   ABOUT PAGE — CENTERED, PRESIDENTIAL
   --------------------------------------------------------- */

.gh-page-about {
    background: var(--paper);
}

.gh-about-header {
    padding: 88px 4vw 0;
    text-align: center;
}

.gh-about-title {
    max-width: 860px;
    margin: 0 auto;
    font-family: var(--font-headline);
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.95;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.gh-about-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    background: var(--gold);
    margin: 28px auto 0 auto;
}

.gh-about-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 4vw 72px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.88;
    font-weight: 400;
    text-align: center;
}

.gh-about-content p {
    color: var(--ink);
    margin-bottom: 1.5em;
    text-align: center;
}

.gh-about-content strong,
.gh-about-content b {
    color: var(--ink);
    font-weight: 700;
}

.gh-about-content h2 {
    font-family: var(--font-headline);
    font-size: 34px;
    line-height: 1.08;
    font-weight: 700;
    margin-top: 2.8em;
    margin-bottom: 0.6em;
    color: var(--ink);
    text-align: center;
    border-top: none;
    padding-top: 0;
}

.gh-about-content h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto 0 auto;
}

.gh-about-content h3 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2.4em;
    margin-bottom: 1em;
    text-align: center;
}

.gh-about-content blockquote {
    margin: 40px auto;
    padding: 28px 32px;
    max-width: 580px;
    background: transparent;
    border-left: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    text-align: center;
}

.gh-about-content blockquote p::before {
    display: none;
}

.gh-about-content hr {
    border: none;
    height: 1px;
    background: var(--line);
    max-width: 200px;
    margin: 48px auto;
}

.gh-about-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(154, 122, 28, 0.35);
}

.gh-about-content a:hover {
    border-bottom-color: var(--gold);
}

.gh-about-content ul,
.gh-about-content ol {
    text-align: left;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

@media (max-width: 700px) {
    .gh-about-header {
        padding-top: 56px;
    }

    .gh-about-title {
        font-size: 42px;
    }

    .gh-about-content {
        font-size: 18px;
        padding-top: 36px;
    }

    .gh-about-content blockquote {
        font-size: 20px;
        padding: 22px 20px;
    }
}

/* ---------------------------------------------------------
   PRINT
   --------------------------------------------------------- */

@media print {
    body {
        background: white;
        color: black;
    }

    .gh-head,
    .gh-foot,
    .gh-cta,
    .gh-pagination,
    form[data-members-form],
    .gh-head-actions {
        display: none;
    }

    .gh-content {
        max-width: 100%;
        font-size: 12pt;
        line-height: 1.6;
    }

    .gh-content a {
        color: black;
        text-decoration: underline;
    }

    .gh-content table {
        page-break-inside: avoid;
    }
}
