@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --ink: #1a1608;
  --paper: #f7f3eb;
  --paper-dark: #ede8dc;
  --rule: #c8b89a;
  --gold: #b8960c;
  --gold-light: #d4af37;
  --ocean: #1a3a4a;
  --ocean-light: #2a5a72;
  --red: #8b1a1a;
  --grey: #6b6355;
  --dark: #141008;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── BASE ── */
html { font-size: 16px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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.45;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── UTILITY ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  border-top: 2px solid var(--ink);
  padding-top: 7px;
  margin-bottom: 14px;
  font-weight: 500;
}
.section-label.gold { color: var(--gold); border-top-color: var(--gold); }
.section-label.ocean-label { color: var(--ocean-light); border-top-color: var(--ocean); }
.section-label.light { color: var(--gold-light); border-top-color: var(--gold); }

/* ── HEADER / MASTHEAD ── */
.site-header {
  border-bottom: 4px double var(--ink);
  padding: 28px 0 0;
  background: var(--paper);
}

.header-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.header-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1.9;
}

.masthead {
  text-align: center;
  flex: 1;
  padding: 0 24px;
}

.masthead-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--ink);
  display: block;
  text-decoration: none;
}

.masthead-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 8px;
}

.masthead-rule::before,
.masthead-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink);
}

.masthead-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
  font-weight: 300;
}

.edition-strip {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  font-weight: 300;
}

/* ── NAVIGATION ── */
.site-nav {
  background: var(--ink);
  color: var(--paper);
}

.nav-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.site-nav a {
  color: var(--paper);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
  font-weight: 300;
  white-space: nowrap;
}

.site-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
.site-nav a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.site-nav a.nav-subscribe {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
  border-color: var(--gold);
}
.site-nav a.nav-subscribe:hover { background: var(--gold-light); }

/* ── DATA BAR ── */
.data-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 2px solid var(--rule);
}

.data-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.data-item {
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 10px;
}

.data-item:last-child { border-right: none; }

.data-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,235,0.45);
  margin-bottom: 3px;
}

.data-value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}

.data-value span { font-size: 11px; }

.data-delta {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  color: var(--gold-light);
}

/* ── HOMEPAGE GRID ── */
.home-content { padding: 32px 0; }

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1px 2.2fr 1px 1fr;
  gap: 0;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 32px;
  margin-bottom: 0;
}

.col-rule {
  background: var(--rule);
  margin: 0 20px;
}

/* ── LEAD STORY ── */
.lead-story { }

.lead-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  font-weight: 500;
}

.lead-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}

.lead-deck {
  font-size: 13px;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
}

.lead-body {
  font-size: 13.5px;
  line-height: 1.72;
  columns: 2;
  column-gap: 22px;
}

.lead-body p { margin-bottom: 10px; break-inside: avoid; }

.drop-cap::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 900;
  float: left;
  line-height: 0.75;
  margin: 6px 8px -4px 0;
  color: var(--ink);
}

/* ── SIDEBAR STORIES ── */
.sidebar-story {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.sidebar-story:last-child { border-bottom: none; margin-bottom: 0; }

.sidebar-headline {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}

.sidebar-body {
  font-size: 12px;
  line-height: 1.62;
  color: #2a2418;
}

.sidebar-byline {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

/* ── THE OVERLOOKED ── */
.overlooked-section {
  background: var(--dark);
  color: var(--paper);
  padding: 32px 0;
  border-bottom: 2px solid var(--ink);
}

.overlooked-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.overlooked-rule { background: rgba(255,255,255,0.08); margin: 0 32px; }

.overlooked-geo {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 7px;
}

.overlooked-headline {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--paper);
}

.overlooked-body {
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(247,243,235,0.72);
}

/* ── THE OCEAN ── */
.ocean-section {
  background: var(--ocean);
  color: var(--paper);
  padding: 32px 0;
  border-bottom: 2px solid var(--ink);
}

.ocean-inner {
  display: grid;
  grid-template-columns: 1.4fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.ocean-rule { background: rgba(255,255,255,0.1); margin: 0 24px; align-self: stretch; }

.ocean-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--paper);
}

.ocean-body {
  font-size: 12.5px;
  line-height: 1.68;
  color: rgba(247,243,235,0.78);
}

.ocean-body p { margin-bottom: 10px; }

.ocean-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 7.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7ab8cc;
  margin-bottom: 5px;
}

.ocean-small-headline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 7px;
  color: var(--paper);
}

/* ── THREE COLUMN SECTION ── */
.three-col-section {
  padding: 28px 0;
  border-bottom: 2px solid var(--ink);
}

.three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.three-col-item {
  padding: 0 22px;
  border-right: 1px solid var(--rule);
}

.three-col-item:first-child { padding-left: 0; }
.three-col-item:last-child { border-right: none; padding-right: 0; }

.col-headline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 9px;
}

.col-body {
  font-size: 12.5px;
  line-height: 1.65;
  color: #2a2418;
}

.col-body p { margin-bottom: 9px; }

/* ── POSITIVE DISPATCH ── */
.positive-section {
  background: var(--paper-dark);
  padding: 28px 0;
  border-bottom: 2px solid var(--ink);
}

.positive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.positive-headline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 7px;
}

.positive-body {
  font-size: 11.5px;
  line-height: 1.62;
  color: var(--grey);
}

.positive-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

/* ── THE GOOD WORK ── */
.good-work-section {
  padding: 28px 0;
  border-bottom: 2px solid var(--ink);
}

.good-work-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

.good-work-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.good-work-intro p {
  font-size: 12px;
  line-height: 1.62;
  color: var(--grey);
  font-style: italic;
}

.good-work-orgs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.org-card {
  border-top: 2px solid var(--ink);
  padding-top: 12px;
}

.org-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.org-region {
  font-family: 'DM Sans', sans-serif;
  font-size: 7.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.org-desc {
  font-size: 11.5px;
  line-height: 1.58;
  color: var(--grey);
}

/* ── PLACE SECTION ── */
.place-section {
  padding: 28px 0;
  border-bottom: 2px solid var(--ink);
}

.place-inner {
  display: grid;
  grid-template-columns: 3fr 1px 2fr;
  gap: 0;
}

.place-rule { background: var(--rule); margin: 0 32px; }

.place-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 12px;
}

.place-subhead {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

.place-body {
  font-size: 13px;
  line-height: 1.72;
  columns: 2;
  column-gap: 20px;
}

.place-body p { margin-bottom: 10px; break-inside: avoid; }

.place-sidebar-headline {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  line-height: 1.3;
}

.place-sidebar-body {
  font-size: 12px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

/* ── THE LENS ── */
.lens-section {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 0;
  border-bottom: 2px solid var(--ink);
}

.lens-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.lens-pull {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
  color: var(--paper);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 20px;
}

.lens-author-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
}

.lens-author-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

.lens-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border-top: 1px solid var(--gold);
  padding-top: 8px;
  margin-bottom: 14px;
}

.lens-headline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--paper);
}

.lens-body {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247,243,235,0.8);
}

.lens-body p { margin-bottom: 12px; }

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 0;
  border-bottom: 2px solid var(--ink);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1.5fr;
  gap: 0;
  align-items: start;
}

.about-rule { background: rgba(255,255,255,0.08); margin: 0 28px; }

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--paper);
}

.about-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.about-bio {
  font-size: 12px;
  line-height: 1.68;
  color: rgba(247,243,235,0.72);
}

.about-bio p { margin-bottom: 8px; }

.about-manifesto {
  font-style: italic;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247,243,235,0.85);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.about-manifesto p { margin-bottom: 10px; }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 32px 0;
  text-align: center;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.newsletter-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-section p {
  font-size: 12.5px;
  color: var(--grey);
  margin-bottom: 18px;
  font-style: italic;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border: 2px solid var(--ink);
  border-right: none;
  background: #fff;
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  outline: none;
  color: var(--ink);
}

.newsletter-form button {
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  padding: 11px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.newsletter-promise {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--grey);
  text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(247,243,235,0.5);
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-philosophy {
  font-size: 12px;
  line-height: 1.68;
  color: rgba(247,243,235,0.55);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-founded {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(247,243,235,0.3);
  text-transform: uppercase;
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 10px;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 7px; }

.footer-links a {
  font-size: 12px;
  color: rgba(247,243,235,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--paper); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: rgba(247,243,235,0.3);
  text-transform: uppercase;
}

.footer-motto {
  font-family: 'Source Serif 4', serif;
  font-size: 11px;
  font-style: italic;
  color: rgba(247,243,235,0.35);
}

/* ── POST / ARTICLE ── */
.post-header {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 0 24px 32px;
  border-bottom: 2px solid var(--ink);
}

.post-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.post-excerpt {
  font-size: 15px;
  font-style: italic;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}

.post-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  font-size: 16px;
  line-height: 1.8;
  color: #2a2418;
}

.post-content p { margin-bottom: 1.4em; }

.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 2.5em 0 1em;
  padding-top: 1em;
  border-top: 1px solid var(--rule);
  color: var(--ink);
}

.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin: 2em 0 0.75em;
  color: var(--ink);
}

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 2em 0;
  font-style: italic;
  font-size: 16px;
  color: var(--grey);
}

.post-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.post-content a:hover { color: var(--gold); }

.post-content .kg-image-card { margin: 2em 0; }
.post-content .kg-image-card img { width: 100%; }

.post-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 900;
  float: left;
  line-height: 0.75;
  margin: 6px 8px -4px 0;
  color: var(--ink);
}

/* ── PAGE ── */
.page-content {
  max-width: 760px;
  margin: 48px auto;
  padding: 0 24px 60px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}

/* ── POST FEED (tag pages) ── */
.post-feed {
  padding: 32px 0;
}

.post-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}

.post-card:first-child { border-top: 2px solid var(--ink); }

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--gold); }

.post-card-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--grey);
  margin-bottom: 8px;
}

.post-card-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.post-card-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; }
  .col-rule { display: none; }
  .overlooked-inner { grid-template-columns: 1fr; }
  .overlooked-rule { display: none; }
  .ocean-inner { grid-template-columns: 1fr; }
  .ocean-rule { display: none; }
  .three-col-grid { grid-template-columns: 1fr; }
  .three-col-item { padding: 0 0 20px; border-right: none; border-bottom: 1px solid var(--rule); }
  .positive-grid { grid-template-columns: 1fr 1fr; }
  .good-work-inner { grid-template-columns: 1fr; gap: 20px; }
  .good-work-orgs { grid-template-columns: 1fr; }
  .place-inner { grid-template-columns: 1fr; }
  .place-rule { display: none; }
  .lens-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-rule { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .data-bar-inner { flex-wrap: wrap; }
  .data-item { min-width: 33%; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 8px; }
  .lead-body { columns: 1; }
  .place-body { columns: 1; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .positive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .masthead-title { letter-spacing: 3px; }
  .header-meta-row { flex-direction: column; align-items: center; gap: 8px; }
}
