@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono-vietnamese.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #10233e;
  --ink-soft: #405068;
  --paper: #f7f3ea;
  --paper-bright: #fffdf8;
  --sun: #ffc94a;
  --lime: #d7f35b;
  --blue: #9ed8f5;
  --coral: #f39775;
  --line: rgba(16, 35, 62, .18);
  --container: 1180px;
  --sans: "Geist", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "Geist Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.admin-bar .site-header { top: 32px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, summary { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { z-index: 100000; top: 12px; left: 12px; width: auto; height: auto; padding: 12px 16px; clip: auto !important; background: var(--ink); color: #fff; }
.skip-link { position: fixed !important; }

/* Header and WordPress menus */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(247, 243, 234, .95); backdrop-filter: blur(16px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 86px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-logo, .brand-mark { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand-mark { display: grid; place-items: center; background: var(--ink); color: var(--paper-bright); font-family: var(--mono); font-size: 13px; font-weight: 800; letter-spacing: -1px; }
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.brand-copy small { max-width: 220px; overflow: hidden; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { margin-left: auto; }
.desktop-nav ul { margin: 0; padding: 0; list-style: none; }
.desktop-nav > .menu { display: flex; align-items: center; gap: 30px; }
.desktop-nav > .menu > li { position: relative; display: flex; align-items: center; min-height: 86px; }
.desktop-nav > .menu > li > a { position: relative; font-size: 14px; font-weight: 650; }
.desktop-nav > .menu > li > a::before { position: absolute; content: ""; width: 0; height: 1px; left: 0; bottom: -7px; background: currentColor; transition: width .18s; }
.desktop-nav > .menu > li:hover > a::before, .desktop-nav > .menu > li:focus-within > a::before, .desktop-nav > .menu > .current-menu-item > a::before, .desktop-nav > .menu > .current-menu-ancestor > a::before { width: 100%; }
.desktop-nav .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 7px; }
.desktop-nav .menu-item-has-children > a::after { content: "⌄"; margin-top: -4px; color: var(--ink-soft); font-size: 15px; transition: transform .18s; }
.desktop-nav .menu-item-has-children:hover > a::after, .desktop-nav .menu-item-has-children:focus-within > a::after { transform: rotate(180deg) translateY(-2px); }
.desktop-nav .sub-menu { position: absolute; top: calc(100% - 3px); left: 50%; width: 340px; padding: 10px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 9px 9px 0 var(--ink); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, 10px); transition: opacity .18s, visibility .18s, transform .18s; }
.desktop-nav .sub-menu::before { position: absolute; content: ""; height: 18px; top: -16px; left: 0; right: 0; }
.desktop-nav li:hover > .sub-menu, .desktop-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.desktop-nav .sub-menu li + li { border-top: 1px solid var(--line); }
.desktop-nav .sub-menu a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 13px; font-family: var(--serif); font-size: 16px; transition: padding-left .18s, background .18s; }
.desktop-nav .sub-menu a::after { content: "↗"; display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--sans); font-size: 10px; }
.desktop-nav .sub-menu a:hover, .desktop-nav .sub-menu a:focus-visible { padding-left: 18px; outline: 0; background: var(--sun); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-search { position: relative; }
.header-search summary { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 650; list-style: none; cursor: pointer; }
.header-search summary::-webkit-details-marker { display: none; }
.search-circle { position: relative; display: inline-block; width: 15px; height: 15px; border: 1.7px solid var(--ink); border-radius: 50%; }
.search-circle::after { position: absolute; content: ""; width: 6px; height: 1.7px; right: -5px; bottom: -2px; background: var(--ink); transform: rotate(45deg); }
.header-search-panel { position: absolute; top: 38px; right: 0; width: min(480px, calc(100vw - 32px)); padding: 18px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 8px 8px 0 var(--ink); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: #fff; font-size: 14px; font-weight: 750; cursor: pointer; transition: transform .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--sun); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button-ghost { background: transparent; color: var(--paper-bright); border-color: rgba(255,255,255,.65); }
.button-ghost:hover { background: #fff; color: var(--ink); }
.mobile-menu { display: none; }

/* Shared type and controls */
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow > span { width: 30px; height: 2px; background: var(--coral); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 44px; }
.section-heading h2, .topics-intro h2, .about-copy h2, .newsletter h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.5vw, 60px); line-height: 1.02; letter-spacing: -.04em; font-weight: 500; }
.text-link { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-size: 14px; font-weight: 750; }
.text-link > span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; transition: transform .18s, background .18s, color .18s; }
.text-link:hover > span { transform: rotate(45deg); background: var(--ink); color: #fff; }
.search-form { display: flex; align-items: center; width: 100%; padding: 8px 8px 8px 20px; border: 1px solid var(--ink); border-radius: 999px; background: var(--paper-bright); }
.search-form label { flex: 1; }
.search-field { width: 100%; padding: 8px 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-submit { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 750; cursor: pointer; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 58px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; line-height: 1.5; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }

/* Homepage */
.hero { padding: 76px 0 88px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 72px; align-items: center; }
.hero h1 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 5.75vw, 82px); line-height: 1; letter-spacing: -.045em; font-weight: 500; }
.hero h1 em { display: block; font-weight: inherit; text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: .13em; text-underline-offset: .04em; }
.hero-lede { max-width: 610px; margin: 32px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 44px; }
.hero-trust p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.hero-trust strong { color: var(--ink); }
.avatar-stack { display: flex; padding-left: 9px; }
.avatar-stack span { display: grid; place-items: center; width: 34px; height: 34px; margin-left: -9px; border: 2px solid var(--paper); border-radius: 50%; font-family: var(--mono); font-size: 9px; font-weight: 800; }
.avatar-stack span:nth-child(1) { background: var(--sun); }
.avatar-stack span:nth-child(2) { background: var(--blue); }
.avatar-stack span:nth-child(3) { background: var(--lime); }
.featured-card { display: block; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 13px 13px 0 var(--ink); transform: rotate(1.4deg); transition: transform .2s, box-shadow .2s; }
.featured-card:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: 17px 17px 0 var(--sun); }
.featured-art { position: relative; display: grid; place-items: center; min-height: 360px; overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--blue); }
.featured-art::before { position: absolute; content: ""; width: 270px; height: 270px; border: 1px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 38px rgba(16,35,62,.05), 0 0 0 76px rgba(16,35,62,.04); }
.featured-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-symbol { position: relative; z-index: 2; font-family: var(--serif); font-size: 116px; letter-spacing: -.12em; }
.art-label, .art-coordinate { position: absolute; z-index: 3; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.art-label { top: 18px; left: 19px; }
.art-coordinate { right: 18px; bottom: 18px; writing-mode: vertical-rl; }
.featured-info { padding: 23px 25px 25px; }
.post-meta { display: flex; justify-content: space-between; gap: 14px; color: var(--ink-soft); font-family: var(--mono); font-size: 10px; font-weight: 700; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.post-meta span { color: var(--ink); }
.featured-info h2 { margin: 17px 0 23px; font-family: var(--serif); font-size: 28px; line-height: 1.12; letter-spacing: -.025em; }
.read-more { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 750; }
.ticker { border-block: 1px solid var(--ink); background: var(--sun); }
.ticker-inner { display: flex; align-items: center; justify-content: center; gap: 20px; min-height: 52px; overflow: hidden; font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.ticker-inner strong { padding: 7px 10px; background: var(--ink); color: #fff; }
.articles-section { padding: 108px 0 120px; background: var(--paper-bright); }
.article-grid, .archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { min-width: 0; border: 1px solid var(--line); background: #fff; transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(16,35,62,.1); }
.article-art { position: relative; display: grid; place-items: center; min-height: 250px; overflow: hidden; border-bottom: 1px solid var(--line); }
.article-art img { width: 100%; height: 250px; object-fit: cover; }
.art-sun { background: var(--sun); }
.art-coral { background: var(--coral); }
.art-lime { background: var(--lime); }
.art-blue { background: var(--blue); }
.article-number { position: absolute; top: 17px; left: 18px; font-family: var(--mono); font-size: 10px; font-weight: 700; }
.article-letter { position: relative; z-index: 2; font-family: var(--serif); font-size: 100px; }
.article-orbit { position: absolute; width: 150px; height: 150px; border: 1px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 22px rgba(16,35,62,.06), 0 0 0 44px rgba(16,35,62,.04); }
.article-body { display: flex; flex-direction: column; min-height: 300px; padding: 22px 21px 19px; }
.article-title { margin: 17px 0 12px; font-family: var(--serif); font-size: 24px; line-height: 1.2; letter-spacing: -.018em; }
.article-title a:hover { text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 5px; }
.article-excerpt { color: var(--ink-soft); font-size: 14px; line-height: 1.72; }
.article-excerpt p { margin: 0; }
.article-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink-soft); font-family: var(--mono); font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.article-footer a { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); transition: background .18s, color .18s, transform .18s; }
.article-footer a:hover { background: var(--ink); color: #fff; transform: rotate(45deg); }
.topics-section { padding: 110px 0; background: var(--ink); color: var(--paper-bright); }
.topics-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; }
.topics-intro { position: sticky; top: 130px; align-self: start; }
.topics-intro .section-kicker { color: var(--sun); }
.topics-intro > p:not(.section-kicker) { max-width: 430px; margin: 27px 0 34px; color: #c3cbd5; font-size: 16px; line-height: 1.7; }
.topic-list { display: flex; flex-direction: column; gap: 15px; }
.topic-card { display: grid; grid-template-columns: 48px 1fr auto 42px; align-items: center; gap: 18px; min-height: 155px; padding: 25px 27px; color: var(--ink); transition: transform .18s; }
.topic-card:hover { transform: translateX(-8px); }
.topic-haravan { background: var(--sun); }
.topic-wordpress { background: var(--blue); }
.topic-marketing { background: var(--coral); }
.topic-index, .topic-count { font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.topic-index { align-self: start; }
.topic-count { align-self: end; }
.topic-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 34px; letter-spacing: -.03em; }
.topic-card p { max-width: 390px; margin: 0; color: rgba(16,35,62,.72); font-size: 13px; line-height: 1.55; }
.topic-arrow { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%; transition: transform .18s; }
.topic-card:hover .topic-arrow { transform: rotate(45deg); }
.about-section { padding: 118px 0; background: var(--paper-bright); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; align-items: center; }
.portrait { position: relative; display: grid; place-items: center; min-height: 510px; overflow: hidden; border: 1px solid var(--ink); background: var(--blue); box-shadow: -12px 12px 0 var(--sun); }
.portrait::before { position: absolute; content: ""; width: 285px; height: 285px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper-bright); box-shadow: 0 0 0 28px rgba(16,35,62,.08), 0 0 0 56px rgba(16,35,62,.05); }
.portrait-initial { position: relative; z-index: 2; font-family: var(--serif); font-size: 116px; letter-spacing: -.12em; transform: translateX(-6px); }
.portrait-caption, .portrait-stamp { position: absolute; z-index: 2; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.portrait-caption { left: 21px; bottom: 21px; line-height: 1.6; }
.portrait-stamp { top: 21px; right: 18px; padding: 7px 10px; border: 1px solid var(--ink); transform: rotate(4deg); }
.about-copy > p:not(.section-kicker) { max-width: 650px; margin: 29px 0 34px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.newsletter { padding: 84px 0; border-block: 1px solid var(--ink); background: var(--sun); }
.newsletter-inner { display: grid; grid-template-columns: 78px .95fr 1.05fr; align-items: center; gap: 44px; }
.newsletter-mark { display: grid; place-items: center; width: 70px; height: 70px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper-bright); font-size: 28px; }
.newsletter h2 { font-size: clamp(38px, 4.4vw, 56px); }
.newsletter-form-wrap > p { margin: 0 0 20px; font-size: 15px; line-height: 1.7; }
.search-section { padding: 62px 0; }
.search-inner { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 65px; }
.search-inner > p { margin: 0; font-family: var(--serif); font-size: 28px; }

/* Archives */
.archive-hero { padding: 58px 0 70px; border-bottom: 1px solid var(--ink); }
.archive-hero-copy { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 65px; margin-bottom: 48px; }
.archive-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 6.5vw, 88px); line-height: 1; letter-spacing: -.045em; font-weight: 500; }
.archive-hero h1.title-long { font-size: clamp(46px, 5.2vw, 72px); line-height: 1.04; letter-spacing: -.035em; }
.archive-hero h1.title-very-long { font-size: clamp(40px, 4.4vw, 62px); line-height: 1.08; letter-spacing: -.025em; }
.archive-hero-copy > p, .archive-description { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.archive-description p { margin: 0; }
.archive-hero > .container > .search-form { max-width: 720px; }
.archive-list { padding: 90px 0 116px; background: var(--paper-bright); }
.archive-grid { grid-template-columns: repeat(2, 1fr); }
.archive-grid .article-card { display: grid; grid-template-columns: 190px 1fr; }
.archive-grid .article-art { min-height: 100%; border-right: 1px solid var(--line); border-bottom: 0; }
.archive-grid .article-art img { height: 100%; min-height: 330px; }
.navigation.pagination { margin-top: 55px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 0 12px; border: 1px solid var(--ink); border-radius: 999px; font-family: var(--mono); font-size: 9px; }
.page-numbers.current, .page-numbers:hover { background: var(--ink); color: #fff; }
.nothing-found { grid-column: 1 / -1; padding: 55px; border: 1px solid var(--ink); background: var(--paper); text-align: center; }
.nothing-found h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 38px; }
.nothing-found .search-form { max-width: 600px; margin: 30px auto 0; }

/* Single post — one template H1 and an editorial reading column */
.post-hero { padding: 58px 0 44px; border-bottom: 1px solid var(--ink); }
.post-hero-grid { display: grid; grid-template-columns: 1.28fr .72fr; align-items: center; gap: 68px; }
.post-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(46px, 4.7vw, 72px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; text-wrap: pretty; overflow-wrap: break-word; }
.post-hero h1.title-long { font-size: clamp(40px, 4vw, 62px); line-height: 1.06; letter-spacing: -.035em; }
.post-hero h1.title-very-long { font-size: clamp(36px, 3.35vw, 54px); line-height: 1.1; letter-spacing: -.025em; }
.post-lead { max-width: 760px; margin: 28px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.post-cover { position: relative; display: grid; place-items: center; min-height: 340px; overflow: hidden; border: 1px solid var(--ink); background: var(--blue); box-shadow: 10px 10px 0 var(--ink); transform: rotate(2deg); }
.post-cover::before { position: absolute; content: ""; width: 190px; height: 190px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 0 0 0 25px rgba(16,35,62,.07), 0 0 0 50px rgba(16,35,62,.05); }
.post-cover img { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.post-cover > span { position: absolute; z-index: 3; top: 16px; left: 16px; font-family: var(--mono); font-size: 8px; }
.post-cover > strong { position: relative; z-index: 2; font-family: var(--serif); font-size: 46px; transform: rotate(-4deg); }
.post-cover > i { position: absolute; z-index: 3; right: 20px; bottom: 17px; font-size: 27px; font-style: normal; }
.post-byline { display: flex; align-items: center; gap: 13px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); }
.byline-avatar { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10px; font-weight: 750; }
.post-byline p { display: flex; flex-direction: column; gap: 4px; margin: 0; font-size: 12px; }
.post-byline p > span { color: var(--ink-soft); font-family: var(--mono); font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.post-share { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.post-share > span { margin-right: 5px; color: var(--ink-soft); font-size: 9px; text-transform: uppercase; }
.post-share a { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid var(--ink); border-radius: 50%; font-size: 11px; font-weight: 750; }
.post-content-grid { --post-reading-width: 740px; display: block; padding-top: 82px; padding-bottom: 105px; }
.entry-content { width: 100%; font-family: var(--serif); }
.entry-content > :first-child { margin-top: 0; }
.entry-content p, .entry-content li { color: #30425b; font-size: 18px; line-height: 1.85; }
.entry-content p { margin: 0 0 24px; }
.entry-content h2 { margin: 64px 0 24px; font-size: clamp(34px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
.entry-content h3 { margin: 45px 0 18px; font-size: clamp(26px, 3vw, 34px); line-height: 1.15; }
.entry-content h4 { margin: 34px 0 14px; font-size: 23px; }
.entry-content h5, .entry-content h6 { margin: 28px 0 12px; font-size: 18px; }
.entry-content a { text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.entry-content blockquote { position: relative; margin: 52px 0; padding: 31px 35px 31px 70px; border: 1px solid var(--ink); background: var(--sun); }
.entry-content blockquote p { margin: 0; color: var(--ink); font-size: 24px; line-height: 1.5; font-style: italic; }
.entry-content pre, .entry-content .wp-block-code { overflow-x: auto; margin: 45px 0; padding: 24px; border: 1px solid var(--ink); background: var(--ink); color: #dbe5ef; font-family: var(--mono); font-size: 13px; line-height: 1.7; }
.entry-content table { width: 100%; margin: 35px 0; border-collapse: collapse; font-family: var(--sans); font-size: 14px; }
.entry-content th, .entry-content td { padding: 13px; border: 1px solid var(--line); text-align: left; }
.entry-content th { background: var(--ink); color: #fff; }
.entry-content figure { margin: 42px 0; }
.entry-content figcaption { margin-top: 9px; color: var(--ink-soft); font-family: var(--sans); font-size: 11px; text-align: center; }
.entry-content .alignwide { width: 100%; }
.entry-content .alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }

/*
 * Keep long-form copy at a comfortable measure while allowing layout blocks,
 * galleries and explicitly wide media to use the surrounding canvas.
 */
.post-page .post-content > :where(p, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, pre, table, figure:not(.alignwide):not(.alignfull), .wp-block-code, .wp-block-table, .wp-block-embed, .page-links),
.post-page .post-content > .wpb-content-wrapper > :where(p, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, pre, table, figure:not(.alignwide):not(.alignfull), .wp-block-code, .wp-block-table, .wp-block-embed, .page-links),
.post-page .post-content .wpb_text_column > .wpb_wrapper {
  width: 100%;
  max-width: var(--post-reading-width);
  margin-inline: auto;
}
.post-page .post-content :where(p, li) { line-height: 1.9; }
.post-page .post-content p { margin-bottom: 30px; }
.post-page .post-content li + li { margin-top: 10px; }
.post-page .post-content h2 { margin-top: 70px; font-size: clamp(31px, 3.3vw, 41px); line-height: 1.14; }
.post-page .post-content h3 { margin-top: 48px; font-size: clamp(26px, 2.6vw, 32px); line-height: 1.2; }
.post-page .post-content :where(h2, h3, h4) { text-wrap: pretty; scroll-margin-top: 110px; }
.post-page .post-content .alignwide { width: 100%; max-width: 980px; margin-inline: auto; }
.post-page .post-footer { width: 100%; max-width: var(--post-reading-width); margin-inline: auto; }

/* WPBakery Page Builder 8.6.1 compatibility */
body.npgl-wpbakery-content .entry-content { overflow: visible; }
body.npgl-wpbakery-content .entry-content > .vc_row:first-child { margin-top: 0; }
body.npgl-wpbakery-content .entry-content .vc_row[data-vc-full-width] { position: relative; max-width: none; }
body.npgl-wpbakery-content .entry-content .wpb_text_column p:last-child { margin-bottom: 0; }
body.npgl-wpbakery-content .entry-content .wpb_single_image figure,
body.npgl-wpbakery-content .entry-content .wpb_single_image .vc_figure { margin-top: 0; margin-bottom: 0; }
body.npgl-wpbakery-content .entry-content .vc_btn3,
body.npgl-wpbakery-content .entry-content a.vc_general { text-decoration: none; }
body.npgl-wpbakery-content .entry-content .vc_tta-title-text,
body.npgl-wpbakery-content .entry-content .vc_toggle_title { font-family: var(--sans); letter-spacing: normal; }
body.vc_editor .site-header,
body.compose-mode .site-header { position: relative; top: 0; }

/* Total Theme 6.4.2 / Total Theme Core 2.4.2 legacy content */
.npgl-total-legacy { max-width: 100%; }
.npgl-legacy-panel { margin: 28px 0; padding: 28px; border: 1px solid var(--line); background: var(--paper-bright); }
.npgl-legacy-panel > :first-child { margin-top: 0; }
.npgl-legacy-panel > :last-child { margin-bottom: 0; }
.npgl-legacy-grid, .npgl-legacy-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-block: 30px; }
.npgl-legacy-flex { display: flex; flex-wrap: wrap; align-items: stretch; gap: 22px; margin-block: 24px; }
.npgl-legacy-flex > * { min-width: 0; }
.npgl-legacy-post-card { overflow: hidden; border: 1px solid var(--line); background: var(--paper-bright); }
.npgl-legacy-post-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.npgl-legacy-post-card h3 { margin: 0; padding: 20px 20px 10px; font-size: 24px; line-height: 1.2; }
.npgl-legacy-post-card p { margin: 0; padding: 0 20px 22px; font-family: var(--sans); font-size: 14px; line-height: 1.65; }
.npgl-legacy-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-block: 34px; }
.npgl-legacy-gallery img { width: 100%; height: auto; }
.npgl-legacy-video { margin-block: 34px; aspect-ratio: 16 / 9; }
.npgl-legacy-video iframe, .npgl-legacy-video video { width: 100%; height: 100%; }
.npgl-legacy-toggle { margin: 0 0 14px; border: 1px solid var(--line); background: var(--paper-bright); }
.npgl-legacy-toggle summary { padding: 18px 20px; font-family: var(--sans); font-weight: 750; cursor: pointer; }
.npgl-legacy-toggle > div { padding: 0 20px 20px; }
.npgl-legacy-stat { display: flex; flex-direction: column; gap: 7px; padding: 24px; border: 1px solid var(--line); }
.npgl-legacy-stat strong { font-family: var(--serif); font-size: 42px; line-height: 1; }
.npgl-legacy-stat span { font-family: var(--sans); font-size: 14px; }
.npgl-legacy-list { margin-block: 26px; }
.npgl-legacy-author { margin-block: 34px; padding: 26px; border: 1px solid var(--line); background: var(--paper-bright); }
.npgl-legacy-author p { margin: 8px 0 0; }
.npgl-legacy-social { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 20px; }
.npgl-legacy-social a { padding: 9px 13px; border: 1px solid var(--ink); border-radius: 999px; font-family: var(--sans); font-size: 12px; text-decoration: none; }
.npgl-legacy-post-nav { display: flex; justify-content: space-between; gap: 24px; margin-block: 34px; font-family: var(--sans); font-weight: 700; }
.npgl-total-legacy--highlight { padding-inline: .2em; background: var(--sun); }
.npgl-total-legacy--underline { text-decoration: underline; text-decoration-color: var(--sun); text-decoration-thickness: 3px; }
.post-footer { padding-top: 10px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line); font-family: var(--sans); font-size: 11px; }
.post-tags a { padding: 7px 11px; border: 1px solid var(--ink); border-radius: 999px; }
.author-note { display: grid; grid-template-columns: 56px 1fr; gap: 22px; margin-top: 58px; padding: 28px; border: 1px solid var(--line); background: var(--paper); font-family: var(--sans); }
.author-note .byline-avatar { width: 56px; height: 56px; }
.author-note > div:last-child > span { color: var(--ink-soft); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.author-note h2 { margin: 6px 0 7px; font-family: var(--serif); font-size: 22px; }
.author-note p { margin: 0 0 12px; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.author-note a { font-size: 11px; font-weight: 750; }
.related-section { padding: 86px 0 102px; border-top: 1px solid var(--ink); background: var(--blue); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.related-grid a { position: relative; min-height: 220px; padding: 24px; border-right: 1px solid var(--ink); background: var(--paper-bright); }
.related-grid a:last-child { border-right: 0; }
.related-grid a:hover { background: var(--sun); }
.related-grid span { font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.related-grid h3 { margin: 34px 0 0; font-family: var(--serif); font-size: 23px; line-height: 1.22; }
.related-grid i { position: absolute; right: 20px; bottom: 18px; font-style: normal; }

/* Pages, comments, 404 */
.standard-page-hero { padding: 58px 0 74px; border-bottom: 1px solid var(--ink); }
.standard-page-hero h1 { max-width: 980px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 6.5vw, 88px); line-height: 1; letter-spacing: -.045em; font-weight: 500; text-wrap: pretty; overflow-wrap: break-word; }
.standard-page-hero h1.title-long { font-size: clamp(46px, 5.2vw, 72px); line-height: 1.04; letter-spacing: -.035em; }
.standard-page-hero h1.title-very-long { font-size: clamp(40px, 4.4vw, 62px); line-height: 1.08; letter-spacing: -.025em; }
.standard-page-hero > .container > p:last-child { max-width: 760px; margin: 28px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.standard-page-content { padding-top: 82px; padding-bottom: 105px; }
.page-featured-image img { width: 100%; max-height: 620px; object-fit: cover; }
.about-page-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; padding-top: 85px; padding-bottom: 110px; }
.about-page-aside { align-self: start; }
.about-portrait { width: 100%; min-height: 430px; box-shadow: -8px 8px 0 var(--sun); }
.about-page-aside > p { margin: 25px 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; line-height: 1.6; text-transform: uppercase; }
.about-page-content .about-lead, .contact-intro { color: var(--ink); font-size: 30px; line-height: 1.4; }
.contact-page-grid { display: block; padding-top: 85px; padding-bottom: 110px; }
.contact-content { width: 100%; max-width: none; }
.comments-wrap { padding-bottom: 100px; }
.comments-area { padding-top: 55px; border-top: 1px solid var(--ink); }
.comments-title, .comment-reply-title { font-family: var(--serif); font-size: 34px; }
.comment-list { padding: 0; list-style: none; }
.comment-list .children { list-style: none; }
.comment-body { margin-bottom: 20px; padding: 22px; border: 1px solid var(--line); background: var(--paper-bright); }
.comment-meta { font-size: 11px; }
.comment-content { font-family: var(--serif); }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.comment-form-comment, .comment-notes, .logged-in-as, .form-submit { grid-column: 1 / -1; }
.comment-form label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 700; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 13px; border: 1px solid var(--line); background: var(--paper-bright); }
.comment-form input[type="submit"] { min-height: 46px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 700; cursor: pointer; }
.error-page { padding: 70px 0 110px; }
.error-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.error-code { color: var(--sun); font-family: var(--serif); font-size: clamp(130px, 20vw, 270px); line-height: .8; text-shadow: 6px 6px 0 var(--ink); -webkit-text-stroke: 1px var(--ink); }
.error-layout h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.05em; }
.error-layout p { color: var(--ink-soft); line-height: 1.7; }
.error-layout .search-form { margin: 28px 0 20px; }

/* Footer */
.site-footer { padding: 68px 0 24px; background: var(--ink); color: var(--paper-bright); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: start; gap: 55px; padding-bottom: 56px; }
.footer-brand .brand-mark { background: var(--sun); color: var(--ink); }
.footer-brand .brand-copy small, .footer-top > p { color: #abb6c5; }
.footer-top > p { margin: 0; font-size: 13px; line-height: 1.7; }
.footer-links ul { margin: 0; padding: 0; list-style: none; }
.footer-menu { display: grid; grid-template-columns: repeat(2, max-content); justify-content: end; gap: 18px 34px; }
.footer-menu a { position: relative; font-size: 12px; }
.footer-menu a::after { position: absolute; content: ""; width: 0; height: 1px; bottom: -5px; left: 0; background: currentColor; transition: width .18s; }
.footer-menu a:hover::after { width: 100%; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.15); color: #9aa8ba; font-family: var(--mono); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.footer-bottom a { color: #fff; }

@media (max-width: 1100px) {
  .desktop-nav > .menu { gap: 22px; }
  .header-inner { gap: 22px; }
  .hero-grid { grid-template-columns: 1fr 400px; gap: 42px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid .article-card:last-child { display: none; }
  .topics-layout { gap: 45px; }
  .archive-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1000px) {
  body.admin-bar .site-header { top: 32px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 74px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .header-search summary > span:last-child, .header-actions .button { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu > summary { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; list-style: none; cursor: pointer; }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > summary span { width: 16px; height: 1.5px; margin-inline: auto; background: var(--ink); transition: transform .18s; }
  .mobile-menu[open] > summary span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu[open] > summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu nav { position: fixed; top: 74px; inset-inline: 0; max-height: calc(100vh - 74px); overflow-y: auto; padding: 18px 16px 28px; border-bottom: 1px solid var(--ink); background: var(--paper); }
  body.admin-bar .mobile-menu nav { top: 106px; }
  .mobile-menu ul { margin: 0; padding: 0; list-style: none; }
  .mobile-menu .mobile-primary-menu > li > a { display: block; padding: 14px 6px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; }
  .mobile-menu .sub-menu { display: grid; grid-template-columns: repeat(3, 1fr); padding: 5px 0 13px 18px; border-bottom: 1px solid var(--line); }
  .mobile-menu .sub-menu a { display: block; padding: 9px 4px; color: var(--ink-soft); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
  .hero { padding: 55px 0 76px; }
  .hero-grid, .topics-layout, .about-grid, .newsletter-inner, .archive-hero-copy, .post-hero-grid, .search-inner, .error-layout, .about-page-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .featured-card { width: min(100%, 490px); justify-self: center; }
  .topics-intro { position: static; }
  .portrait { width: min(100%, 520px); justify-self: center; }
  .newsletter-inner { gap: 25px; }
  .newsletter-form-wrap { max-width: 680px; }
  .archive-hero-copy { gap: 25px; }
  .post-cover { width: min(100%, 460px); justify-self: center; }
  .about-page-aside { width: min(100%, 520px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { display: none; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .mobile-menu nav { top: 120px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  body.admin-bar .site-header { top: 0; }
  body.admin-bar .mobile-menu nav { top: 74px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { max-width: 150px; font-size: 8px; }
  .brand-logo, .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); line-height: 1.02; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; }
  .featured-art { min-height: 320px; }
  .ticker-inner { justify-content: flex-start; }
  .articles-section, .topics-section, .about-section, .archive-list { padding: 80px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading h2, .topics-intro h2, .about-copy h2 { font-size: 40px; line-height: 1.05; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid .article-card:last-child { display: block; }
  .topic-card { grid-template-columns: 35px 1fr 38px; gap: 12px; padding: 21px 17px; }
  .topic-count { display: none; }
  .topic-card h3 { font-size: 29px; }
  .portrait { min-height: 410px; box-shadow: -7px 7px 0 var(--sun); }
  .portrait::before { width: 225px; height: 225px; }
  .portrait-initial { font-size: 90px; }
  .newsletter h2 { font-size: 38px; line-height: 1.06; }
  .newsletter-mark { width: 50px; height: 50px; }
  .archive-hero h1, .standard-page-hero h1 { font-size: 48px; line-height: 1.05; }
  .archive-hero h1.title-long, .standard-page-hero h1.title-long { font-size: 40px; line-height: 1.1; }
  .archive-hero h1.title-very-long, .standard-page-hero h1.title-very-long { font-size: 34px; line-height: 1.14; }
  .archive-grid .article-card { display: block; }
  .archive-grid .article-art { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }
  .archive-grid .article-art img { min-height: 235px; height: 235px; }
  .breadcrumbs { margin-bottom: 40px; }
  .post-hero h1 { font-size: 42px; line-height: 1.08; }
  .post-hero h1.title-long { font-size: 36px; line-height: 1.12; }
  .post-hero h1.title-very-long { font-size: 32px; line-height: 1.16; }
  .post-cover { min-height: 275px; box-shadow: 7px 7px 0 var(--ink); }
  .post-byline { align-items: flex-start; flex-wrap: wrap; }
  .post-share { width: 100%; margin: 10px 0 0; }
  .post-content-grid, .standard-page-content { padding-top: 58px; padding-bottom: 78px; }
  .entry-content p, .entry-content li { font-size: 17px; line-height: 1.78; }
  .entry-content h2 { margin-top: 52px; font-size: 35px; }
  .npgl-legacy-grid, .npgl-legacy-posts, .npgl-legacy-gallery { grid-template-columns: 1fr !important; }
  .npgl-legacy-panel { padding: 21px; }
  .entry-content blockquote { padding: 28px 22px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid a { border-right: 0; border-bottom: 1px solid var(--ink); }
  .related-grid a:last-child { border-bottom: 0; }
  .author-note { grid-template-columns: 45px 1fr; padding: 20px; }
  .author-note .byline-avatar { width: 45px; height: 45px; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form > * { grid-column: 1 !important; }
  .error-code { font-size: 150px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-menu { justify-content: start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
