/* Club Copy — Recent News (Stones Throw–inspired press) */
.news {
  position: relative;
  background:
    radial-gradient(720px 420px at 8% 0%, rgba(210,222,236,.35), transparent 55%),
    radial-gradient(640px 380px at 96% 20%, rgba(236,230,220,.55), transparent 50%),
    linear-gradient(180deg, #F4F3F0 0%, #FAF8F5 48%, #F7F5F1 100%);
  color: var(--ink);
  padding: 72px 0 96px;
}
.news .section-head {
  border-bottom-color: rgba(170,182,200,.28);
  margin-bottom: 36px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 28px;
}
@media (min-width: 700px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
}
.news-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.news-card-art {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--soft);
  border: 1px solid rgba(170,182,200,.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 18px 40px rgba(26,30,38,.08);
}
.news-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
@media (hover:hover) {
  .news-card:hover .news-card-art img { transform: scale(1.03); }
}
.news-card-body {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card-date {
  font-family: var(--callsign);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
}
.news-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.news-card-title a { color: inherit; }
@media (hover:hover) {
  .news-card-title a:hover { opacity: .7; }
}
.news-card-dek {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 34em;
}
.news-card-more {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(17,17,17,.28);
  align-self: flex-start;
}
@media (hover:hover) {
  .news-card-more:hover { text-decoration-color: rgba(17,17,17,.7); }
}

/* Article pages */
.news-page {
  padding: calc(var(--nav-h) + var(--safe-t) + 48px) 0 96px;
}
.news-article {
  max-width: 680px;
  margin: 0 auto;
}
.news-article-hero {
  margin: 0 0 36px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--soft);
  border: 1px solid rgba(170,182,200,.22);
  box-shadow: 0 18px 40px rgba(26,30,38,.08);
}
.news-article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-kicker {
  font-family: var(--callsign);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 14px;
}
.news-article h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 28px;
}
.news-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.news-body p { margin: 0 0 1.15em; max-width: 38em; }
.news-body em,
.news-body i { font-style: italic; color: var(--ink); }
.news-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(17,17,17,.3);
}
@media (hover:hover) {
  .news-body a:hover { text-decoration-color: rgba(17,17,17,.75); }
}
.news-body .news-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(170,182,200,.28);
  border-bottom: 1px solid rgba(170,182,200,.28);
}
.news-body .news-ctas a {
  font-weight: 600;
  font-size: 15px;
}
.news-quote-label {
  margin: 32px 0 12px !important;
  font-family: var(--callsign);
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim) !important;
}
.news-quote {
  margin: 0 0 1.4em;
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(170,182,200,.45);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
}
.news-quote p { color: inherit; margin-bottom: 1em; }
.news-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(170,182,200,.28);
  font-size: 14px;
}
.news-nav a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(17,17,17,.22);
}
@media (hover:hover) {
  .news-nav a:hover { color: var(--ink); }
}

@media (max-width: 699px) {
  .news { padding: 56px 0 72px; }
  .news-article-hero { aspect-ratio: 1; }
}
