/* ══════════════════════════════════════════════════════
   SOLID BASE — GHOST THEME STYLES
   Complete design system for solidbase.today
   ══════════════════════════════════════════════════════ */

:root {
  --ink: #1a1714;
  --paper: #f5f0e8;
  --warm-white: #faf7f2;
  --moss: #4a5e3a;
  --moss-light: #6b7f59;
  --moss-pale: #e8ede3;
  --earth: #8b6f47;
  --earth-light: #c4a882;
  --rust: #a64b2a;
  --mist: #9aa89c;
  --rule: #d4cfc6;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── MASTHEAD / HEADER ── */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--warm-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo-text span { color: var(--moss); }

.masthead-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switch {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  cursor: pointer;
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 2px;
  background: none;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-switch:hover, .lang-switch.active {
  color: var(--ink);
  border-color: var(--ink);
}

.subscribe-btn, .follow-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--warm-white);
  background: var(--moss);
  border: none;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.subscribe-btn:hover, .follow-btn:hover { background: var(--ink); }

/* ── HEADER SOCIAL ICONS ── */
.header-follow-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}

.header-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}

.header-social-icon:hover {
  opacity: 1;
  color: var(--moss);
}

/* ── FOOTER SOCIAL LINKS ── */
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-link svg {
  flex-shrink: 0;
}

/* ── SIDEBAR FOLLOW LINKS ── */
.sidebar-follow-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.sidebar-follow-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-white);
  background: var(--moss);
  border: none;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.sidebar-follow-btn:hover {
  background: var(--ink);
}

.sidebar-follow-btn svg {
  flex-shrink: 0;
}

/* ── INLINE FOLLOW LINKS (article bottom) ── */
.inline-follow-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.inline-follow-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-white);
  background: var(--moss);
  border: none;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.inline-follow-btn:hover {
  background: var(--ink);
}

.inline-follow-btn svg {
  flex-shrink: 0;
}

.nav {
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
  overflow-x: auto;
}

.nav a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  padding: 12px 20px 11px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s;
}

.nav a:first-child { padding-left: 0; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--moss); border-bottom-color: var(--moss); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 48px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
  background: var(--warm-white);
}

.breadcrumb a {
  color: var(--mist);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--ink); }

.breadcrumb .breadcrumb-sep {
  margin: 0 10px;
  color: var(--rule);
  font-size: 10px;
}

.breadcrumb .breadcrumb-current {
  color: var(--ink);
  font-weight: 400;
}

/* ── TICKER ── */
.ticker {
  background: var(--ink);
  color: var(--warm-white);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

.ticker-item strong { color: var(--moss-light); }
.ticker-dot { color: var(--moss-light); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-left {
  padding: 48px 64px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-headline em { font-style: italic; color: var(--moss); }

.hero-deck {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #4a4540;
  max-width: 480px;
  margin-bottom: 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--moss-pale);
}

.hero-featured {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  background: linear-gradient(to top, rgba(26,23,20,0.85) 0%, rgba(26,23,20,0.2) 60%, transparent 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(74,94,58,0.06) 40px,
      rgba(74,94,58,0.06) 41px
    );
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-featured-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 16px;
}

.hero-featured-cat {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--moss);
  padding: 4px 10px;
  margin-bottom: 16px;
  width: fit-content;
}

.hero-featured-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-featured-byline {
  font-size: 13px;
  color: rgba(245,240,232,0.7);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-white);
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(245,240,232,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s;
}

.read-link:hover { border-color: var(--warm-white); }

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 48px 24px;
  border-bottom: 1px solid var(--rule);
}

.section-label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.section-more:hover { border-bottom-color: var(--moss); }

/* ── ARTICLE GRID ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--rule);
}

.article-card {
  padding: 40px 40px 36px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.article-card:last-child { border-right: none; }
.article-card:hover { background: var(--moss-pale); }

.card-cat {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--moss);
  padding-bottom: 2px;
}

.card-cat.analysis, .card-cat.analise { color: var(--rust); border-color: var(--rust); }
.card-cat.territory, .card-cat.territorio { color: var(--moss); border-color: var(--moss); }
.card-cat.communities, .card-cat.comunidades { color: #6b8e4e; border-color: #6b8e4e; }
.card-cat.field-reports, .card-cat.relatos { color: var(--earth); border-color: var(--earth); }
.card-cat.essay, .card-cat.ensaio { color: #7a5b8c; border-color: #7a5b8c; }

.card-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

.card-deck {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #5a544e;
  margin-bottom: 24px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-author {
  font-size: 12px;
  color: var(--mist);
  font-weight: 400;
}

.card-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
}

/* ── TWO-COL SECTION ── */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid var(--rule);
}

.two-col-main {
  border-right: 1px solid var(--rule);
}

/* ── FEATURED LONG READ ── */
.long-read {
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rule);
}

.long-read:last-child { border-bottom: none; }
.long-read:hover { background: var(--moss-pale); }

.long-read-number {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--rule);
  flex-shrink: 0;
  letter-spacing: -0.04em;
}

.long-read-content { flex: 1; }

.long-read-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}

.long-read-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.long-read-deck {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #5a544e;
  margin-bottom: 20px;
}

.long-read-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.read-time-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--earth);
  padding: 4px 10px;
}

/* ── LIST ARTICLES ── */
.list-article {
  padding: 28px 40px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.list-article:last-child { border-bottom: none; }
.list-article:hover { background: var(--moss-pale); }

.list-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--rule);
  padding-top: 2px;
}

.list-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.list-deck {
  font-size: 13px;
  font-weight: 300;
  color: #7a7370;
  line-height: 1.5;
}

.list-meta {
  text-align: right;
  flex-shrink: 0;
}

/* ── SIDEBAR ── */
.sidebar { padding: 0; }

.sidebar-section {
  padding: 32px;
  border-bottom: 1px solid var(--rule);
}

.sidebar-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 20px;
}

/* ── CATEGORIES SIDEBAR ── */
.category-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.category-item:last-child { border-bottom: none; }

.cat-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cat-text {
  display: flex;
  flex-direction: column;
}

.cat-desc {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: #7a7370;
  line-height: 1.5;
  margin-top: 4px;
}

.cat-name {
  display: block;
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
}

.cat-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
}

.category-item:hover .cat-name { color: var(--moss); }

/* ── NEWSLETTER ── */
.newsletter-box {
  background: var(--moss);
  padding: 32px;
  margin: 32px;
}

.newsletter-box h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.newsletter-box p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(245,240,232,0.12);
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: rgba(245,240,232,0.4); }
.newsletter-input:focus { border-color: rgba(245,240,232,0.6); }

.newsletter-submit {
  width: 100%;
  padding: 10px;
  background: var(--warm-white);
  color: var(--moss);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.newsletter-submit:hover { background: var(--paper); }

/* ── NEWSLETTER INLINE (article footer) ── */
.newsletter-inline {
  background: var(--moss);
  padding: 40px;
  margin-top: 48px;
}

.newsletter-inline h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.newsletter-inline p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form { display: flex; gap: 0; }

.newsletter-form .newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-right: none;
  margin-bottom: 0;
}

.newsletter-form .newsletter-submit {
  width: auto;
  padding: 12px 24px;
  white-space: nowrap;
}

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  border-bottom: 1px solid var(--rule);
  padding: 56px 48px;
  gap: 64px;
  align-items: center;
  background: var(--ink);
}

.about-logo-large {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-logo-name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.02em;
}

.about-logo-name span { color: var(--moss-light); }

.about-logo-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,0.7);
}

.about-text strong { color: var(--warm-white); font-weight: 500; }

.about-author {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-author-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-white);
}

.about-author-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,240,232,0.55);
}

.about-author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.author-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-light);
  border: 1px solid rgba(107,127,89,0.4);
  padding: 3px 8px;
}

/* ── PILLARS STRIP ── */
.pillars-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--rule);
}

.pillar-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.pillar-card:last-child { border-right: none; }
.pillar-card:hover { background: var(--moss-pale); }

.pillar-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.pillar-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.5;
}

.pillar-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: 16px;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  padding: 80px 48px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--paper);
}

.quote-line {
  width: 3px;
  background: var(--moss);
  align-self: stretch;
  flex-shrink: 0;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.quote-source {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ══════════════════════════════════════════════════════
   ARTICLE / POST STYLES
   ══════════════════════════════════════════════════════ */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--rust);
  z-index: 200;
  transition: width 0.1s;
  width: 0%;
}

.article-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.article-main {
  border-right: 1px solid var(--rule);
  padding: 72px 80px 100px;
}

.article-cat {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
  margin-bottom: 24px;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.byline-author { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); }
.byline-meta { font-family: var(--mono); font-size: 11px; color: var(--mist); letter-spacing: 0.04em; }
.byline-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }

.article-lang { display: flex; gap: 8px; margin-left: auto; }

.lang-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  cursor: pointer;
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 2px;
  background: none;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--ink);
  border-color: var(--ink);
}

/* ── FEATURE IMAGE ── */
.article-feature-image {
  margin: 32px 0 40px;
  padding: 0;
}
.article-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-feature-image figcaption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--mist);
  margin-top: 10px;
  text-align: center;
}

/* ── ARTICLE BODY (Ghost content) ── */
.article-body,
.gh-content {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #2a2520;
}

.article-body p,
.gh-content p {
  margin-bottom: 28px;
}

.article-body h2,
.gh-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 56px 0 24px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.article-body h3,
.gh-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin: 40px 0 16px;
}

.article-body em,
.gh-content em { font-style: italic; }

.article-body strong,
.gh-content strong { font-weight: 500; color: var(--ink); }

.article-body a,
.gh-content a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  transition: opacity 0.15s;
}

.article-body a:hover,
.gh-content a:hover { opacity: 0.7; }

/* ── PULL QUOTE ── */
.pull-quote,
.gh-content blockquote {
  margin: 48px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--rust);
}

.pull-quote p,
.gh-content blockquote p {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   GHOST KOENIG EDITOR — ALL CARD STYLES
   ══════════════════════════════════════════════════════ */

/* ── WIDTH CLASSES ── */
.gh-content .kg-width-wide {
  margin-left: -40px;
  margin-right: -40px;
  max-width: none;
}

.gh-content .kg-width-full {
  margin-left: calc(-80px - 1px);
  margin-right: calc(-80px - 1px);
  max-width: none;
  width: calc(100% + 160px + 2px);
}

.gh-content .kg-width-wide img,
.gh-content .kg-width-full img {
  width: 100%;
  height: auto;
}

/* ── IMAGE CARD ── */
.gh-content .kg-image-card {
  margin: 48px 0;
}

.gh-content .kg-image-card img {
  width: 100%;
  height: auto;
}

.gh-content .kg-image-card figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mist);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ── GALLERY CARD ── */
.gh-content .kg-gallery-card {
  margin: 48px 0;
}

.gh-content .kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gh-content .kg-gallery-row {
  display: flex;
  gap: 4px;
}

.gh-content .kg-gallery-row:not(:first-of-type) {
  margin: 0;
}

.gh-content .kg-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-content .kg-gallery-image {
  flex: 1;
}

/* ── EMBED CARD ── */
.gh-content .kg-embed-card {
  margin: 48px 0;
}

.gh-content .kg-embed-card iframe {
  width: 100%;
}

/* ── BOOKMARK CARD ── */
.gh-content .kg-bookmark-card {
  border: 1px solid var(--rule);
  margin: 48px 0;
  background: var(--warm-white);
}

.gh-content .kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.gh-content .kg-bookmark-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gh-content .kg-bookmark-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.gh-content .kg-bookmark-description {
  font-size: 13px;
  font-weight: 300;
  color: #7a7370;
  line-height: 1.5;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.gh-content .kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--mist);
}

.gh-content .kg-bookmark-icon {
  width: 16px;
  height: 16px;
}

.gh-content .kg-bookmark-author,
.gh-content .kg-bookmark-publisher {
  font-size: 12px;
  color: var(--mist);
}

.gh-content .kg-bookmark-thumbnail {
  width: 200px;
  flex-shrink: 0;
  position: relative;
}

.gh-content .kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ── VIDEO CARD ── */
.gh-content .kg-video-card {
  margin: 48px 0;
}

.gh-content .kg-video-card video {
  width: 100%;
  height: auto;
}

/* ── AUDIO CARD ── */
.gh-content .kg-audio-card {
  margin: 48px 0;
  border: 1px solid var(--rule);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gh-content .kg-audio-thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.gh-content .kg-audio-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gh-content .kg-audio-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.gh-content .kg-audio-player-container {
  width: 100%;
}

/* ── FILE CARD ── */
.gh-content .kg-file-card {
  margin: 48px 0;
  border: 1px solid var(--rule);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gh-content .kg-file-card-container {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.gh-content .kg-file-card-contents {
  flex: 1;
}

.gh-content .kg-file-card-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.gh-content .kg-file-card-caption {
  font-size: 13px;
  color: var(--mist);
  margin-top: 4px;
}

.gh-content .kg-file-card-metadata {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
  margin-top: 8px;
}

.gh-content .kg-file-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ── TOGGLE CARD ── */
.gh-content .kg-toggle-card {
  margin: 48px 0;
  border: 1px solid var(--rule);
  padding: 0;
}

.gh-content .kg-toggle-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.gh-content .kg-toggle-heading svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.gh-content .kg-toggle-content {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #5a544e;
}

.gh-content .kg-toggle-card[data-kg-toggle-state="close"] .kg-toggle-content {
  display: none;
}

/* ── CALLOUT CARD ── */
.gh-content .kg-callout-card {
  margin: 48px 0;
  padding: 24px;
  border-left: 3px solid var(--moss);
  background: var(--moss-pale);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gh-content .kg-callout-emoji {
  font-size: 20px;
  flex-shrink: 0;
}

.gh-content .kg-callout-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* ── BUTTON CARD ── */
.gh-content .kg-button-card {
  margin: 48px 0;
  text-align: center;
}

.gh-content .kg-button-card.kg-align-left {
  text-align: left;
}

.gh-content .kg-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--moss);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.gh-content .kg-btn:hover {
  background: var(--ink);
}

.gh-content .kg-btn-accent {
  background: var(--moss);
}

/* ── HEADER CARD ── */
.gh-content .kg-header-card {
  margin: 48px 0;
  padding: 80px 48px;
  text-align: center;
  background: var(--ink);
}

.gh-content .kg-header-card h2,
.gh-content .kg-header-card h3 {
  color: var(--warm-white);
  border: none;
  margin: 0 0 16px;
  padding: 0;
}

.gh-content .kg-header-card p {
  color: rgba(245,240,232,0.7);
}

.gh-content .kg-header-card.kg-style-light {
  background: var(--paper);
}

.gh-content .kg-header-card.kg-style-light h2,
.gh-content .kg-header-card.kg-style-light h3 {
  color: var(--ink);
}

.gh-content .kg-header-card.kg-style-light p {
  color: #5a544e;
}

.gh-content .kg-header-card.kg-style-accent {
  background: var(--moss);
}

/* ── PRODUCT CARD ── */
.gh-content .kg-product-card {
  margin: 48px 0;
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.gh-content .kg-product-card-image {
  width: 160px;
  flex-shrink: 0;
}

.gh-content .kg-product-card-image img {
  width: 100%;
  height: auto;
}

.gh-content .kg-product-card-title-container {
  flex: 1;
}

.gh-content .kg-product-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.gh-content .kg-product-card-description {
  font-size: 14px;
  font-weight: 300;
  color: #5a544e;
  line-height: 1.6;
}

.gh-content .kg-product-card .kg-product-card-rating-star {
  width: 16px;
  height: 16px;
}

.gh-content .kg-product-card-button {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-white);
  background: var(--moss);
  padding: 10px 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── SIGNUP CARD ── */
.gh-content .kg-signup-card {
  margin: 48px 0;
  padding: 48px;
  background: var(--moss);
  text-align: center;
}

.gh-content .kg-signup-card h2,
.gh-content .kg-signup-card h3 {
  color: var(--warm-white);
  border: none;
  margin: 0 0 12px;
  padding: 0;
}

.gh-content .kg-signup-card p {
  color: rgba(245,240,232,0.75);
  margin-bottom: 20px;
}

.gh-content .kg-signup-card-input {
  padding: 12px 16px;
  background: rgba(245,240,232,0.12);
  border: 1px solid rgba(245,240,232,0.25);
  color: var(--warm-white);
  font-family: var(--sans);
  font-size: 14px;
}

.gh-content .kg-signup-card-button {
  padding: 12px 24px;
  background: var(--warm-white);
  color: var(--moss);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── NFT CARD ── */
.gh-content .kg-nft-card {
  margin: 48px 0;
  border: 1px solid var(--rule);
  overflow: hidden;
}

.gh-content .kg-nft-image {
  width: 100%;
}

.gh-content .kg-nft-content {
  padding: 20px;
}

.gh-content .kg-nft-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.gh-content .kg-nft-metadata {
  font-size: 12px;
  color: var(--mist);
  margin-top: 8px;
}

/* ── FIGCAPTION (shared) ── */
.gh-content figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mist);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ── RESPONSIVE GHOST CARDS ── */
@media (max-width: 900px) {
  .gh-content .kg-width-wide {
    margin-left: -16px;
    margin-right: -16px;
  }
  .gh-content .kg-width-full {
    margin-left: -32px;
    margin-right: -32px;
    width: calc(100% + 64px);
  }
  .gh-content .kg-bookmark-container {
    flex-direction: column;
  }
  .gh-content .kg-bookmark-thumbnail {
    width: 100%;
    height: 200px;
  }
  .gh-content .kg-product-card {
    flex-direction: column;
  }
  .gh-content .kg-product-card-image {
    width: 100%;
  }
}

/* ── ARTICLE FOOTER ── */
.article-footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}

/* ── ARTICLE SIDEBAR ── */
.article-sidebar {
  padding: 48px 32px;
  position: sticky;
  top: 80px;
  height: fit-content;
}

.sidebar-about {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.sidebar-author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.sidebar-author-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.sidebar-author-bio {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #7a7370;
}

.sidebar-related {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.related-item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.related-item:last-child { border-bottom: none; }
.related-item:hover { opacity: 0.7; }

.related-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 6px;
}

.related-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.back-link {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  text-decoration: none;
  padding: 16px 48px;
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s;
}

.back-link:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════════
   CATEGORY PAGE STYLES
   ══════════════════════════════════════════════════════ */

.cat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  min-height: 420px;
}

.cat-hero-left {
  padding: 64px 56px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.cat-hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--moss);
}

.cat-hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.cat-hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #5a544e;
  max-width: 500px;
  margin-bottom: 32px;
}

.cat-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cat-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cat-stat-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cat-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.cat-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--rule);
}

.cat-hero-featured {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.cat-hero-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(74,94,58,0.08) 40px,
      rgba(74,94,58,0.08) 41px
    );
}

.featured-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 16px;
  position: relative;
}

.featured-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--moss);
  padding: 4px 10px;
  margin-bottom: 16px;
  position: relative;
}

.featured-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative;
}

.featured-deck {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245,240,232,0.65);
  margin-bottom: 20px;
  position: relative;
}

.featured-meta {
  font-size: 13px;
  color: rgba(245,240,232,0.5);
  position: relative;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-white);
  text-decoration: none;
  margin-top: 20px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(245,240,232,0.3);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s;
  position: relative;
}

.featured-link:hover { border-color: var(--warm-white); }

/* ── PILLAR DEFINITION BLOCK ── */
.pillar-block {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-item .pillar-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-bottom: 0;
}

.pillar-item-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.pillar-item-desc {
  font-size: 13px;
  font-weight: 300;
  color: #7a7370;
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */

footer {
  border-top: 3px solid var(--ink);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--moss); }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: #7a7370;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-lang {
  display: flex;
  gap: 8px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--moss); }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-deck { animation-delay: 0.3s; }
.hero-meta { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .masthead-top { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-right { height: 400px; }
  .hero-left { padding: 48px; border-right: none; border-bottom: 1px solid var(--rule); }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid .article-card:nth-child(3) { grid-column: 1 / -1; border-right: none; }
  .two-col { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .pillars-strip { grid-template-columns: repeat(3, 1fr); }
  .section-header { padding: 32px 24px 20px; }
  footer { grid-template-columns: 1fr 1fr; }
  .cat-hero { grid-template-columns: 1fr; min-height: auto; }
  .cat-hero-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 48px; }
  .cat-hero-featured { min-height: 360px; }
  .pillar-block { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .breadcrumb { padding: 14px 24px; }
}

@media (max-width: 900px) {
  .article-wrapper { grid-template-columns: 1fr; }
  .article-main { padding: 48px 32px 80px; border-right: none; }
  .article-sidebar { display: none; }
}

@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid .article-card { border-right: none; }
  .pillars-strip { grid-template-columns: 1fr 1fr; }
  .hero-left { padding: 32px 24px; }
  .section-header { padding: 24px; }
  footer { grid-template-columns: 1fr; }
  .cat-hero-left { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .article-main { padding: 32px 20px 60px; }
  .article-title { font-size: 28px; }
  .article-body, .gh-content { font-size: 16px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .newsletter-input { border-right: 1px solid rgba(245,240,232,0.25); border-bottom: none; }
}

/* Hide Ghost default Portal button */
.gh-portal-triggerbtn-iframe { display: none !important; }
