/* ============================================================================
   Papagalos · Νέα / News — shared section stylesheet
   Loaded by /nea/, /nea/<post>/, /en/news/, /en/news/<post>/ (root-absolute /news.css).
   Reuses the homepage design system (tokens + nav/footer/gallery/reveal) verbatim
   and adds editorial .post__* (article) and .news__* (list) styles.
   The two homepages keep their own inline CSS; this file never touches them.
   ============================================================================ */

/* ───────────────────────── Design tokens (mirror of index.html :root) */
:root {
  --bg:        #0b0b0a;
  --bg-2:      #141412;
  --bg-3:      #1b1b18;
  --ink:       #f2ede3;
  --ink-2:     #a8a095;
  --ink-3:     #6d685f;
  --sage:      #9db387;
  --sage-dark: #6b7d5b;
  --brass:     #c9a96e;
  --clay:      #b06b60;
  --line:      rgba(242, 237, 227, 0.08);
  --line-2:    rgba(242, 237, 227, 0.14);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-s:     .32s;
  --dur-m:     .6s;
  --dur-l:     1s;
  --max-w:     1400px;
  --pad-x:     clamp(1.25rem, 5vw, 3.5rem);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "kern", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--sage); color: var(--bg); }

.display {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.022em;
  font-weight: 400;
}
.display em { font-style: italic; font-variation-settings: "opsz" 144; color: var(--sage); }

/* ── Grain overlay (brand parity) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: .28;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip: rect(0,0,0,0); white-space:nowrap; border:0; }

/* ───────────────────────── Reveal primitives
   GSAP controls visibility via gsap.set() + ScrollTrigger.batch().
   If JS is off or GSAP fails to load, news.js adds .is-visible so nothing stays hidden. */
.reveal, .reveal-fade { will-change: opacity, transform; }
.reveal.is-visible, .reveal-fade.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .clip-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; clip-path: none !important; }
}

/* ───────────────────────── Navigation (mirror of index.html) */
.nav {
  position: fixed;
  top: 1.1rem; left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .55rem .55rem .55rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(15, 15, 13, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 20px 60px -30px rgba(0,0,0,.6);
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}
.nav__brand {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .2rem .4rem;
}
.nav__links {
  display: flex;
  gap: 1.4rem;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: .35rem 0;
  transition: color .25s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a::after {
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta {
  font-size: .8rem;
  letter-spacing: .04em;
  background: var(--ink);
  color: var(--bg);
  padding: .6rem 1.05rem;
  border-radius: 999px;
  transition: transform .4s var(--ease-out), background .3s;
}
.nav__cta:hover { background: var(--sage); }
.nav__lang {
  align-self: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--ink-2);
}
.nav__lang:hover { color: var(--ink); border-color: var(--sage); }
.nav__lang::after { display: none !important; }
.nav.is-compact { top: .6rem; }

/* Burger (mobile only) */
.nav__burger {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .3s;
}
.nav__burger:hover { background: rgba(255,255,255,.04); }
.nav__burger svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; }
.nav__burger .line { transition: transform .35s var(--ease-out), opacity .2s; transform-origin: center; transform-box: fill-box; }
.nav[aria-expanded="true"] .burger-top    { transform: translateY(4px) rotate(45deg); }
.nav[aria-expanded="true"] .burger-mid    { opacity: 0; transform: scaleX(0); }
.nav[aria-expanded="true"] .burger-bottom { transform: translateY(-4px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 45;
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: calc(5.25rem + env(safe-area-inset-top)) 2rem calc(2rem + env(safe-area-inset-bottom));
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem .4rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 7vw, 2.2rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
  transition-delay: 0ms;
}
.mobile-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 150ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 220ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 290ms; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 360ms; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 430ms; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 500ms; }
.mobile-menu a .num {
  font-family: "Geist", sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--ink-3);
}
.mobile-menu a:hover, .mobile-menu a:active { color: var(--sage); }
.mobile-menu__foot {
  margin-top: 2rem;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.mobile-menu__foot a { display: inline-block; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: .15rem; }
@media (max-height: 720px) {
  .mobile-menu { padding-top: calc(4.5rem + env(safe-area-inset-top)); }
  .mobile-menu a { padding: .85rem .4rem; font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .mobile-menu__foot { margin-top: 1.25rem; }
}
body.nav-locked { overflow: hidden; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav { padding: .45rem .45rem .45rem 1rem; gap: .6rem; }
  .nav__cta { padding: .55rem .95rem; font-size: .78rem; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none; }
}

/* ───────────────────────── Buttons (mirror of index.html) */
.btn {
  --bg-btn: var(--ink);
  --fg-btn: var(--bg);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  background: var(--bg-btn);
  color: var(--fg-btn);
  font-size: .9rem;
  letter-spacing: .02em;
  font-weight: 500;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sage);
  transform: translate3d(0, 101%, 0);
  transition: transform .55s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translate3d(0, 0, 0); }
.btn:active { transform: translate3d(0, 1px, 0) scale(.985); }
.btn .arrow { transition: transform .4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost {
  --bg-btn: transparent;
  --fg-btn: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover::before { background: var(--ink); }
.btn--ghost:hover { color: var(--bg); }
.btn--sm { padding: .55rem 1.05rem; font-size: .8rem; gap: .45rem; }
.btn--sm .arrow { width: 12px; height: 12px; }
/* Sage accent primary (for the editorial closing CTA — not the stark cream default) */
.btn--accent { --bg-btn: var(--sage); --fg-btn: var(--bg); }
.btn--accent::before { background: var(--ink); }
.btn--accent:hover { color: var(--bg); }

/* ───────────────────────── Section primitives */
.section {
  padding: clamp(4rem, 10vh, 8rem) var(--pad-x);
  max-width: var(--max-w);
  margin-inline: auto;
}
.section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vh, 5rem);
}
.section__eyebrow {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.section__eyebrow .dash { width: 1.8rem; height: 1px; background: var(--sage); }
.section__title {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 16ch;
}
.section__sub {
  margin-top: 1rem;
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
}
@media (max-width: 780px) {
  .section__header { grid-template-columns: 1fr; align-items: start; }
  .section__sub { font-size: 1rem; }
}

/* ───────────────────────── Story zig-zag (reused for food / space beats) */
.story__row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 4vh, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}
.story__row:last-child { border-bottom: 0; }
.story__row--reverse { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.story__img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 5 / 4;
}
.story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story__text { max-width: 46ch; }
.story__text h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  line-height: 1.05;
  margin: .2rem 0 1.1rem;
}
.story__text p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
}
.story__text p + p { margin-top: 1rem; }
@media (max-width: 780px) {
  .story__row, .story__row--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .story__row--reverse .story__img { order: -1; }
}

/* ───────────────────────── Gallery (mirror of index.html) */
.gallery {
  padding: clamp(2rem, 5vh, 4rem) var(--pad-x) clamp(4rem, 10vh, 7rem);
  max-width: var(--max-w);
  margin-inline: auto;
}
.gallery__grid {
  columns: 3;
  column-gap: .9rem;
  margin-top: clamp(2rem, 5vh, 4rem);
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-3);
  isolation: isolate;
  break-inside: avoid;
  margin: 0 0 .9rem;
}
.gallery__tile img {
  width: 100%; height: auto;
  display: block;
  transition: transform 1.2s var(--ease-out), filter .6s;
  filter: saturate(.98);
}
.gallery__tile:hover img { transform: scale(1.06); filter: saturate(1.12); }
.gallery__tile::after {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.45) 100%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.gallery__tile:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 1rem; bottom: 1rem; right: 1rem;
  font-size: .78rem;
  color: var(--ink);
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s, transform .4s;
  z-index: 2;
}
.gallery__tile:hover .gallery__caption { opacity: 1; transform: translateY(0); }
@media (max-width: 920px) { .gallery__grid { columns: 2; } }
@media (max-width: 540px) { .gallery__grid { columns: 1; } }

/* ───────────────────────── Footer (mirror of index.html) */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 5rem) var(--pad-x) 2.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand img { height: 46px; width: auto; margin-bottom: .8rem; opacity: .92; }
.footer__brand p { color: var(--ink-2); max-width: 32ch; }
.footer__col h3 {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer__col a {
  color: var(--ink);
  font-size: .92rem;
  transition: color .3s;
}
.footer__col a:hover { color: var(--sage); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: .78rem;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.footer__bottom strong { color: var(--ink-2); font-weight: 400; }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ───────────────────────── Utility */
.arrow { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.magnet { transition: transform .5s var(--ease-out); will-change: transform; }

/* ============================================================================
   NEW — Article (.post__*) editorial styles
   ============================================================================ */
.post__hero {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(7rem, 15vh, 10.5rem) var(--pad-x) clamp(1.5rem, 4vh, 3rem);
}
.post__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1.4rem;
}
.post__eyebrow::before { content:""; width: 1.8rem; height: 1px; background: var(--sage); flex: none; }
.post__title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.032em;
  font-weight: 300;
  max-width: 20ch;
}
.post__lead {
  margin-top: 1.5rem;
  color: var(--ink-2);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  max-width: 60ch;
}
.post__meta {
  margin-top: 1.7rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.post__meta strong { color: var(--ink-2); font-weight: 500; }
.post__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }

/* Full-width hero figure */
.post__figure {
  position: relative;
  max-width: var(--max-w);
  margin: clamp(2rem, 5vh, 3.5rem) auto 0;
  padding-inline: var(--pad-x);
}
.post__figure-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
}
.post__figure-inner img { width: 100%; height: 100%; object-fit: cover; }
.post__figcaption {
  margin-top: .8rem;
  font-size: .78rem;
  letter-spacing: .03em;
  color: var(--ink-3);
}

/* Long-form prose */
.post__body {
  max-width: 70ch;
  margin-inline: auto;
}
.post__standfirst {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.post__body p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.8;
}
.post__body p + p { margin-top: 1.2rem; }
.post__body h2 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-optical-sizing: auto;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
  margin: clamp(2.5rem, 6vh, 3.6rem) 0 1.1rem;
}
.post__body h2 em { font-style: italic; color: var(--sage); }
.post__body h3 {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 500;
  margin: 2rem 0 .8rem;
}
.post__body em { font-style: italic; }
.post__body strong { color: var(--ink); font-weight: 500; }
.post__body a { color: var(--ink); border-bottom: 1px solid var(--sage); transition: color .3s; }
.post__body a:hover { color: var(--sage); }
.post__body ul { margin: 1.1rem 0 1.1rem 1.1rem; color: var(--ink-2); }
.post__body li { margin-bottom: .5rem; line-height: 1.7; }
.post__body blockquote {
  margin: 2rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--sage);
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
}
.post__body figure { margin: 2.2rem 0; }
.post__body figure img { border-radius: 1rem; width: 100%; }
.post__body figcaption { margin-top: .7rem; font-size: .78rem; color: var(--ink-3); letter-spacing: .03em; }
.post__hr { border: 0; border-top: 1px solid var(--line); max-width: 70ch; margin: clamp(2.5rem, 6vh, 4rem) auto; }

/* Guest roll — name chips */
.guest-roll {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
  max-width: 72ch;
}
.guest-chip {
  display: inline-block;
  padding: .5rem .95rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--ink);
  background: rgba(242, 237, 227, 0.02);
  transition: border-color .3s, color .3s, background .3s;
}
.guest-chip:hover { border-color: var(--sage); color: var(--ink); }
.guest-chip--accent { border-color: var(--sage); color: var(--sage); }

/* CTA block + credit + back row */
.post__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  max-width: 70ch;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
}
.post__credit {
  max-width: 70ch;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  line-height: 1.75;
  color: var(--ink-3);
}
.post__credit a { color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.post__credit a:hover { color: var(--ink); }
.post__back {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(2rem, 5vh, 3rem) var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}
.post__back a { color: var(--ink-2); transition: color .3s; }
.post__back a:hover { color: var(--sage); }

/* ============================================================================
   NEW — News list (.news__*) styles
   ============================================================================ */
.news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vh, 4rem);
}
.news__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform .5s var(--ease-out), border-color .3s;
}
.news__card:hover { transform: translate3d(0, -6px, 0); border-color: var(--line-2); }
.news__card-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-3); }
.news__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter .6s; filter: saturate(.98); }
.news__card:hover .news__card-img img { transform: scale(1.06); filter: saturate(1.1); }
.news__card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.news__card-date { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.news__card-title {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.news__card-excerpt { color: var(--ink-2); font-size: .95rem; line-height: 1.6; flex: 1; }
.news__card-more { font-size: .85rem; color: var(--sage); display: inline-flex; align-items: center; gap: .45rem; }
.news__card:hover .news__card-more .arrow { transform: translateX(3px); }
.news__card-more .arrow { width: 14px; height: 14px; transition: transform .4s var(--ease-out); }
