/* ---------- Tokens ---------- */
:root {
  --green: #238c36;
  --green-dark: #1b6c2a;
  --green-light: #e9f6ec;
  --black: #111315;
  --grey-900: #1f2326;
  --grey-700: #4a5158;
  --grey-500: #7a8189;
  --grey-200: #e5e7ea;
  --grey-100: #f3f5f7;
  --white: #ffffff;

  --font-display: "Anton", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,.08);

  --max-w: 1100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--green); }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.15; color: var(--black); }
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .02em; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: .015em; text-transform: uppercase; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 .8em;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.lead { font-size: 1.15rem; color: var(--grey-700); max-width: 60ch; }
.muted { color: var(--grey-500); }
.small { font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line-1 { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }
.brand-line-2 { font-size: .72rem; color: var(--grey-700); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav > a, .dropdown-toggle {
  color: var(--grey-900);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  white-space: nowrap;
}
.site-nav > a:hover, .dropdown-toggle:hover { color: var(--green-dark); }
.site-nav .is-active { color: var(--green-dark); font-weight: 700; }
.site-nav .nav-cta {
  background: var(--green);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
}
.site-nav .nav-cta:hover { background: var(--green-dark); color: white; }

/* Our Club dropdown */
.has-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-toggle .caret { font-size: .7em; transition: transform .15s ease; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 10px;
  background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); min-width: 210px; padding: 8px 0;
  display: none; flex-direction: column; z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: flex; }
.has-dropdown:hover .caret, .has-dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown a { padding: 9px 18px; font-size: .92rem; color: var(--grey-900); text-decoration: none; white-space: nowrap; }
.dropdown a:hover { background: var(--green-light); color: var(--green-dark); }

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 42px; height: 42px; padding: 9px; background: transparent;
  border: 1px solid var(--grey-200); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--grey-900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .brand-line-2 { display: none; }
  .site-nav {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-md); padding: 6px 0; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav > a, .dropdown-toggle { padding: 13px 24px; font-size: 1rem; }
  .has-dropdown { display: block; }
  .dropdown { position: static; display: flex; box-shadow: none; border: 0; margin: 0; padding: 0 0 6px; min-width: 0; background: var(--grey-100); }
  .dropdown a { padding: 11px 24px 11px 40px; }
  .has-dropdown .caret { display: none; }
  .site-nav .nav-cta { margin: 10px 24px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: white; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: white; }
.section-accent .btn-ghost,
.section:not(.section-dark):not(.section-accent) .btn-ghost {
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.section:not(.section-dark):not(.section-accent) .btn-ghost:hover {
  background: var(--green-light);
}
.btn-block { display: block; width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(720px, 92vh);
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url("assets/hero-1.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(17,19,21,.85) 100%);
  z-index: -1;
}
.hero-content { padding: 120px 24px 100px; }
.hero h1 { color: white; margin-bottom: .15em; }
.hero .eyebrow { color: #b8e6c2; }
.hero-tagline { font-size: 1.25rem; max-width: 36ch; color: rgba(255,255,255,.92); }

/* ---------- Kick-off banner (time-sensitive, high-prominence) ---------- */
.kickoff {
  padding: 64px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 110%, rgba(0,0,0,.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  position: relative;
}
.kickoff::before,
.kickoff::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.kickoff::before { width: 220px; height: 220px; top: -80px; left: -80px; }
.kickoff::after { width: 380px; height: 380px; bottom: -180px; right: -120px; }
.kickoff-poster {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.kickoff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.kickoff-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffeb3b;
  box-shadow: 0 0 0 0 rgba(255,235,59,.7);
  animation: kickoff-pulse 1.8s ease-out infinite;
}
@keyframes kickoff-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,235,59,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,235,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,235,59,0); }
}
.kickoff-countdown { font-weight: 700; opacity: .9; }
.kickoff-poster h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 .35em;
}
.kickoff-h2-sub {
  display: inline-block;
  font-size: .55em;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
}
.kickoff-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
  text-align: left;
}
.kickoff-info-block {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.kickoff-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b8e6c2;
  margin: 0 0 6px;
}
.kickoff-when,
.kickoff-where { margin: 0; line-height: 1.35; }
.kickoff-when-big,
.kickoff-where-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: white;
}
.kickoff-when-time {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-top: 2px;
}
.kickoff-where-addr {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}
.kickoff-blurb {
  font-size: 1.08rem;
  color: rgba(255,255,255,.92);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.kickoff-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.kickoff-quick {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.kickoff-quick a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: white;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s, border-color .15s;
}
.kickoff-quick a:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  color: white;
}

/* "btn-light" variant for use on green backgrounds */
.btn-light {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.btn-light:hover { background: #f5f5f5; color: var(--green-dark); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
  color: white;
  border-color: white;
}

@media (max-width: 720px) {
  .kickoff { padding: 48px 0; }
  .kickoff-info { grid-template-columns: 1fr; gap: 10px; }
  .kickoff-poster h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .kickoff::before, .kickoff::after { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 32px 0 64px; }
.section-dark {
  background: var(--black);
  color: rgba(255,255,255,.88);
}
.section-dark h2,
.section-dark h3 { color: white; }
.section-dark .lead { color: rgba(255,255,255,.78); }
.section-accent {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
}
.section-accent h2, .section-accent h3 { color: white; }
.section-accent .btn-ghost { color: white; border-color: rgba(255,255,255,.8); }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* ---------- Prose two-col ---------- */
.prose.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
}
.prose p { margin: 0 0 1em; color: var(--grey-700); }
.section-dark .prose p { color: rgba(255,255,255,.82); }
@media (max-width: 720px) {
  .prose.two-col { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Seasons grid (two main season cards) ---------- */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}
.season-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
}
.season-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8e6c2;
  margin: 0 0 .5em;
}
.season-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .15em;
}
.season-dates {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin: 0 0 .8em;
}
.season-card p { color: rgba(255,255,255,.82); }
@media (max-width: 720px) {
  .seasons-grid { grid-template-columns: 1fr; }
}

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 16px;
}
.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card h3 { margin-bottom: .5em; color: white; }
.card p { color: rgba(255,255,255,.78); margin: 0; }
@media (max-width: 820px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Fixture table ---------- */
.fixture-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}
.fixture-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 1rem;
}
.fixture-table thead th {
  background: var(--grey-100);
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-700);
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
}
.fixture-table tbody th,
.fixture-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: top;
}
.fixture-table tbody tr:last-child th,
.fixture-table tbody tr:last-child td { border-bottom: 0; }
.fixture-table tbody th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--green-dark);
  width: 80px;
}
.fixture-table tbody tr:hover {
  background: var(--green-light);
}
.fixture-table .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 8px;
  vertical-align: middle;
}
.fixture-source { margin-top: 18px; }
@media (max-width: 600px) {
  .fixture-table thead th,
  .fixture-table tbody th,
  .fixture-table tbody td { padding: 12px 12px; font-size: .92rem; }
  .fixture-table tbody th { width: 56px; font-size: .95rem; }
}

/* ---------- Photo grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 820px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 24px;
}
.steps > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: white;
  background: rgba(255,255,255,.15);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.steps h3 { margin-bottom: .35em; }
.steps p { color: rgba(255,255,255,.92); }

/* ---------- Contact form ---------- */
.contact-form {
  margin-top: 28px;
  background: var(--grey-100);
  padding: 32px;
  border-radius: var(--radius-lg);
}
.field { display: block; margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--grey-900);
}
.field .optional { font-weight: 400; color: var(--grey-500); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--grey-900);
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35,140,54,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.footer-logo {
  width: 110px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.site-footer h4 {
  color: white;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.site-footer a { color: #b8e6c2; }
.site-footer a:hover { color: white; }
.footer-bar {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ===================================================================
   CLUB NEWS — added for the News site
   =================================================================== */

/* Header active state + back-to-site */
.site-nav a.is-active { color: var(--green-dark); font-weight: 700; }

/* News hero (index) */
.news-hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.news-hero .hero-image {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center 35%;
}
.news-hero .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.55) 60%, rgba(17,19,21,.85) 100%);
}
.news-hero-content { padding: 110px 24px 90px; }
.news-hero h1 { color:#fff; margin-bottom:.1em; }
.news-hero .lead { color: rgba(255,255,255,.92); }

/* News card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px){ .news-grid { grid-template-columns: 1fr; } }

.news-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card a.news-card-imglink { display:block; aspect-ratio: 16/10; overflow:hidden; }
.news-card img { width:100%; height:100%; object-fit: cover; }
.news-card-body { padding: 22px 24px 26px; display:flex; flex-direction:column; flex:1; }
.news-card .post-date { color: var(--green-dark); font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:.75rem; margin:0 0 .5em; }
.news-card h3 { font-family: var(--font-display); text-transform:uppercase; letter-spacing:.01em; font-size:1.45rem; line-height:1.05; margin:0 0 .5em; }
.news-card h3 a { color: var(--black); text-decoration:none; }
.news-card h3 a:hover { color: var(--green-dark); }
.news-card .excerpt { color: var(--grey-700); margin:0 0 1.1em; }
.news-card .read-more { margin-top:auto; font-weight:600; color: var(--green-dark); text-decoration:none; }
.news-card .read-more:hover { color: var(--green); }
.news-card .read-more::after { content:" \2192"; }

/* Featured (first) card spans full width */
.news-card.featured { grid-column: 1 / -1; }
@media (min-width: 761px){
  .news-card.featured { flex-direction: row; }
  .news-card.featured a.news-card-imglink { aspect-ratio:auto; flex: 1 1 55%; min-height: 320px; }
  .news-card.featured .news-card-body { flex: 1 1 45%; justify-content:center; }
  .news-card.featured h3 { font-size: 2.1rem; }
}

/* Article (event page) */
.article-hero { position:relative; color:#fff; isolation:isolate; overflow:hidden; }
.article-hero .hero-image { position:absolute; inset:0; z-index:-2; background-size:cover; background-position:center 40%; }
.article-hero .hero-overlay { position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.62) 100%); }
.article-hero-content { padding: 96px 24px 64px; max-width: 880px; }
.article-hero .post-date { color:#cdeed5; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:.8rem; margin:0 0 .8em; }
.article-hero h1 { color:#fff; margin:0 0 .3em; }
.article-hero .byline { color: rgba(255,255,255,.85); font-size:.95rem; }

.back-link { display:inline-block; margin: 28px 0 0; font-weight:600; color:var(--green-dark); text-decoration:none; }
.back-link::before { content:"\2190  "; }

/* Article body / prose */
.article-body { max-width: 820px; margin: 0 auto; padding: 8px 24px 24px; }
.article-body > .lead { font-size:1.2rem; color: var(--grey-700); margin: 0 0 1.4em; }
.article-body p { margin: 0 0 1.1em; color: var(--grey-900); }
.article-body h2 { font-family: var(--font-display); text-transform:uppercase; letter-spacing:.01em; font-size: clamp(1.5rem,3vw,2rem); margin: 1.6em 0 .5em; padding-bottom:.25em; border-bottom: 3px solid var(--green); }
.article-body h3 { font-size: 1.2rem; font-weight:700; color: var(--green-dark); margin: 1.4em 0 .4em; }
.article-body a { color: var(--green-dark); }
.article-body figure { margin: 1.6em 0; }
.article-body figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); width:100%; }
.article-body figcaption { font-size:.85rem; color: var(--grey-500); margin-top:.5em; text-align:center; }
.callout { background: var(--green-light); border-left: 4px solid var(--green); border-radius: var(--radius); padding: 16px 20px; margin: 1.4em 0; font-weight:600; color: var(--green-dark); }

/* Results tables */
.article-body .table-wrap { overflow-x:auto; margin: 1.2em 0 1.8em; }
.results-table { width:100%; border-collapse: collapse; font-size: .95rem; }
.results-table caption { text-align:left; font-weight:700; color: var(--green-dark); padding: 0 0 .5em; }
.results-table thead th { background: var(--green-dark); color:#fff; text-align:left; padding: 10px 14px; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; }
.results-table tbody td { padding: 9px 14px; border-bottom: 1px solid var(--grey-200); }
.results-table tbody tr:nth-child(odd) td { background: var(--grey-100); }
.results-table tbody tr:first-child td { font-weight:600; }

/* Photo gallery in articles */
.gallery { display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap:14px; margin:1.4em 0; }
.gallery img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; width:100%; }

/* Prev / next post nav */
.post-nav { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; max-width:820px; margin: 8px auto 0; padding: 24px; border-top:1px solid var(--grey-200); }
.post-nav a { text-decoration:none; color: var(--grey-900); max-width: 48%; }
.post-nav a:hover { color: var(--green-dark); }
.post-nav .pn-label { display:block; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color: var(--grey-500); margin-bottom:4px; }
.post-nav .pn-title { font-weight:600; }
.post-nav .pn-next { text-align:right; margin-left:auto; }

/* Download link */
.download-link { display:inline-flex; align-items:center; gap:8px; background: var(--green-dark); color:#fff !important; text-decoration:none; padding: 12px 20px; border-radius: var(--radius); font-weight:600; font-size:.95rem; margin:.6em 0 1.2em; transition: background .15s; }
.download-link:hover { background: var(--green); }
