:root {
  --forest: #123f32;
  --deep: #082b22;
  --orange: #f36b21;
  --tangerine: #ff9e45;
  --cream: #f7f1e4;
  --paper: #fffaf0;
  --ink: #15211c;
  --line: rgba(21, 33, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
main { overflow: hidden; }

.site-header {
  height: 86px;
  padding: 0 5.4vw;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 30;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 13px; }
.crest {
  width: 49px;
  height: 56px;
  background: var(--forest);
  color: var(--paper);
  clip-path: polygon(50% 0, 91% 15%, 84% 73%, 50% 100%, 16% 73%, 9% 15%);
  display: grid;
  place-items: center;
  position: relative;
}
.crest::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  clip-path: inherit;
}
.crest span {
  font: 700 15px Georgia, serif;
  letter-spacing: -1px;
  position: relative;
}
.brand-copy, .footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.brand-copy strong, .footer-brand strong { font-size: 17px; letter-spacing: 0.08em; }
.brand-copy small, .footer-brand small {
  font: 600 8px Arial, sans-serif;
  letter-spacing: 0.14em;
  color: #587067;
}
.desktop-nav { display: flex; gap: 31px; font-size: 14px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 31px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 3px;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--orange);
  transition: right 0.18s ease-out;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-action {
  background: var(--orange);
  color: #fff;
  padding: 13px 19px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  gap: 19px;
  transition: transform 0.18s ease-out, background 0.18s ease-out;
}
.header-action:hover { transform: translateY(-2px); background: #d95413; }
.mobile-menu { display: none; }

.hero {
  min-height: 585px;
  background: var(--forest);
  color: var(--paper);
  position: relative;
  padding: 76px 7.5vw 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 6vw;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4vw;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    24vw 0 rgba(255, 255, 255, 0.06),
    48vw 0 rgba(255, 255, 255, 0.06),
    72vw 0 rgba(255, 255, 255, 0.06),
    88vw 0 rgba(255, 255, 255, 0.06);
}
.citrus {
  position: absolute;
  border: 1px solid rgba(255, 158, 69, 0.18);
  border-radius: 50%;
}
.citrus::before, .citrus::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 158, 69, 0.14);
  transform: rotate(45deg);
}
.citrus::after { transform: rotate(-45deg); }
.citrus-one { width: 340px; height: 340px; left: -145px; bottom: -170px; }
.citrus-two { width: 180px; height: 180px; right: 34%; top: -90px; }
.pitch-lines {
  position: absolute;
  inset: 35px 31px 35px auto;
  width: 38%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.pitch-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pitch-midline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  margin: 0 0 24px;
  font: 700 12px Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span { width: 24px; height: 3px; background: var(--orange); }
.eyebrow.dark { color: #50615b; }
.hero h1 {
  margin: 0;
  font-size: clamp(52px, 5.4vw, 86px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.hero h1 span {
  color: var(--tangerine);
  position: relative;
  display: inline-block;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  height: 5px;
  left: 2px;
  right: 0;
  bottom: -5px;
  background: var(--orange);
  transform: rotate(-2deg);
}
.hero-intro {
  margin: 30px 0;
  max-width: 600px;
  color: #d6e2dc;
  font-size: 17px;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease-out, background 0.18s ease-out;
}
.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: white; }
.button-orange:hover { background: #d95413; }
.button-light {
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--paper);
}
.match-poster {
  width: min(100%, 430px);
  justify-self: end;
  position: relative;
  background: var(--paper);
  color: var(--ink);
  transform: rotate(1deg);
  box-shadow: 18px 18px 0 rgba(8, 43, 34, 0.75);
}
.poster-top {
  background: var(--orange);
  color: white;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}
.poster-top strong { font: 700 18px Georgia, serif; }
.poster-field {
  height: 188px;
  background: repeating-linear-gradient(90deg, #174f3f 0, #174f3f 46px, #1c5947 46px, #1c5947 92px);
  position: relative;
  overflow: hidden;
}
.poster-field::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.poster-field::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poster-field span {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.poster-copy { padding: 21px 23px 24px; }
.poster-copy > p { margin: 0 0 12px; color: #6b7b75; font-size: 12px; letter-spacing: 0.05em; }
.poster-copy h2 {
  margin: 0 0 22px;
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poster-copy h2 span { font: italic 700 15px Georgia, serif; color: var(--orange); }
.poster-copy div {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.stat-strip {
  background: var(--paper);
  min-height: 126px;
  padding: 0 7.5vw;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 0.7fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.stat-intro, .stat {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  padding: 22px 3vw;
}
.stat-intro { padding-left: 0; }
.stat-intro > span {
  background: var(--orange);
  color: white;
  font: 700 15px Georgia, serif;
  padding: 10px 8px;
  writing-mode: vertical-rl;
}
.stat-intro p { font-weight: 900; font-size: 16px; line-height: 1.55; }
.stat { flex-direction: column; align-items: flex-start; justify-content: center; gap: 3px; }
.stat p { margin: 0; line-height: 1; }
.stat strong { font: 700 45px Georgia, serif; color: var(--forest); }
.stat p span { font-size: 14px; font-weight: 800; margin-left: 4px; }
.stat small { color: #65736e; }
.data-note { align-self: center; text-align: right; font-size: 11px; line-height: 1.6; color: #84908c; }

.section { padding: 98px 7.5vw; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(38px, 4vw, 62px); margin: 0; line-height: 1; letter-spacing: -0.04em; }
.section-heading .eyebrow { margin-bottom: 14px; }
.section-heading > a { font-size: 14px; font-weight: 800; padding-bottom: 8px; border-bottom: 2px solid var(--orange); }
.match-grid { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 20px; }
.featured-match, .standings { background: var(--paper); border: 1px solid var(--line); }
.card-label {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-label span { font-weight: 900; }
.card-label small { color: #718079; }
.scoreboard {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  align-items: center;
  text-align: center;
  padding: 32px;
}
.scoreboard > div { display: flex; flex-direction: column; align-items: center; }
.team-mark {
  width: 76px;
  height: 84px;
  color: white;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 92% 14%, 84% 72%, 50% 100%, 16% 72%, 8% 14%);
  font: 700 26px Georgia, serif;
}
.team-mark.orange { background: var(--orange); }
.team-mark.green { background: var(--forest); }
.scoreboard h3 { margin: 14px 0 4px; font-size: 20px; }
.scoreboard small { color: #7b8984; }
.scoreboard > p { display: flex; flex-direction: column; margin: 0; align-items: center; }
.scoreboard > p strong { font: 700 34px Georgia, serif; }
.scoreboard > p span { margin: 6px 0 18px; color: #7b8984; font-size: 12px; }
.scoreboard > p em { color: var(--orange); font: italic 800 18px Georgia, serif; }
.venue {
  background: var(--forest);
  color: var(--paper);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.standings ol { list-style: none; margin: 0; padding: 8px 23px 2px; }
.standings li {
  min-height: 51px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
}
.standings li b { font: 700 17px Georgia, serif; color: var(--orange); }
.standings li span { font-size: 14px; font-weight: 700; }
.standings li em { font: 700 18px Georgia, serif; font-style: normal; }
.standings-note { font-size: 11px; color: #7b8984; padding: 13px 23px; margin: 0; }

.youth-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--forest);
  color: var(--paper);
}
.youth-visual {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background: var(--orange);
  display: grid;
  place-items: center;
}
.visual-number {
  position: absolute;
  font: 700 340px/0.8 Georgia, serif;
  color: rgba(255, 255, 255, 0.12);
  left: -30px;
  bottom: -15px;
}
.visual-ball {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  border: 7px solid var(--paper);
  position: relative;
  transform: rotate(-12deg);
  box-shadow: 24px 25px 0 rgba(18, 63, 50, 0.22);
}
.visual-ball::before {
  content: "";
  position: absolute;
  width: 69px;
  height: 62px;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.visual-ball i {
  position: absolute;
  width: 74px;
  height: 6px;
  background: var(--paper);
  top: 50%;
  left: 50%;
  transform-origin: left center;
}
.visual-ball i:nth-child(1) { transform: rotate(12deg) translateX(31px); }
.visual-ball i:nth-child(2) { transform: rotate(132deg) translateX(31px); }
.visual-ball i:nth-child(3) { transform: rotate(252deg) translateX(31px); }
.youth-visual p {
  position: absolute;
  right: 35px;
  top: 28px;
  margin: 0;
  font: 800 13px Arial, sans-serif;
  letter-spacing: 0.16em;
  text-align: right;
}
.youth-copy {
  padding: 80px 8vw 70px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.youth-copy h2 { font-size: clamp(40px, 4.4vw, 66px); line-height: 1.18; margin: 0; letter-spacing: -0.05em; }
.youth-copy > p:not(.eyebrow) { color: #cedbd5; line-height: 1.9; margin: 26px 0; max-width: 580px; }
.program-list { border-top: 1px solid rgba(255, 255, 255, 0.2); margin-bottom: 30px; }
.program-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.program-list article > span { color: var(--tangerine); font: 700 18px Georgia, serif; }
.program-list h3, .program-list p { margin: 0; }
.program-list h3 { font-size: 15px; }
.program-list p { color: #aebfb7; font-size: 12px; margin-top: 4px; }
.youth-copy .button { align-self: flex-start; }

.news-section { background: var(--paper); }
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-item { border-top: 4px solid var(--forest); background: var(--cream); min-width: 0; }
.news-art { height: 190px; overflow: hidden; display: grid; place-items: center; position: relative; }
.news-art::before, .news-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}
.news-art::before { width: 245px; height: 245px; }
.news-art::after { width: 100px; height: 100px; }
.news-art span {
  color: rgba(255, 255, 255, 0.82);
  font: 700 54px Georgia, serif;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 18px 14px;
  clip-path: polygon(50% 0, 92% 14%, 84% 72%, 50% 100%, 16% 72%, 8% 14%);
}
.art-1 { background: var(--forest); }
.art-2 { background: var(--orange); }
.art-3 { background: #2d5145; }
.news-copy { padding: 23px; }
.news-copy > p:first-child {
  display: flex;
  justify-content: space-between;
  margin: 0 0 18px;
  font-size: 12px;
  color: #687670;
}
.news-copy > p:first-child span { color: var(--orange); font-weight: 800; }
.news-copy h3 { margin: 0; font-size: 19px; line-height: 1.55; min-height: 59px; }
.news-copy > p:nth-of-type(2) { color: #687670; font-size: 13px; line-height: 1.75; min-height: 46px; }
.news-copy > a {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.about-section {
  padding: 95px 7.5vw;
  background: #eee5d3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.about-section h2 { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.3; letter-spacing: -0.05em; }
.about-copy > p { font-size: 16px; line-height: 2; margin: 36px 0; color: #50605a; }
.about-links { border-top: 1px solid var(--line); }
.about-links a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  font-size: 14px;
}
.about-links span { color: var(--orange); font: 700 12px Georgia, serif; }
.about-links b { color: var(--orange); }

.join-section {
  background: var(--orange);
  color: white;
  padding: 58px 7.5vw;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
}
.join-mark {
  width: 72px;
  height: 82px;
  border: 2px solid white;
  clip-path: polygon(50% 0, 92% 14%, 84% 72%, 50% 100%, 16% 72%, 8% 14%);
  display: grid;
  place-items: center;
  font: 700 20px Georgia, serif;
}
.join-section p, .join-section h2 { margin: 0; }
.join-section > div > p { font-size: 12px; letter-spacing: 0.15em; font-weight: 800; margin-bottom: 9px; }
.join-section h2 { font-size: clamp(29px, 3.5vw, 48px); }
.join-details { position: relative; }
.join-details summary {
  list-style: none;
  border: 1px solid white;
  min-height: 52px;
  padding: 0 20px;
  min-width: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-weight: 800;
  cursor: pointer;
}
.join-details summary::-webkit-details-marker { display: none; }
.join-details[open] div {
  position: absolute;
  z-index: 5;
  right: 0;
  width: min(420px, 80vw);
  background: var(--paper);
  color: var(--ink);
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}
.join-details div p { line-height: 1.8; font-size: 13px; margin: 0 0 14px; }
.join-details div a { color: var(--orange); font-weight: 900; }

footer { background: var(--deep); color: var(--paper); padding: 65px 7.5vw 25px; }
.crest.light { background: var(--paper); color: var(--deep); }
.footer-brand { margin-bottom: 45px; }
.footer-brand strong { font-size: 20px; }
.footer-brand small { color: #9cb0a7; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8vw;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links h3 { font-size: 13px; color: var(--tangerine); margin: 0 0 4px; }
.footer-links a, .footer-links p { margin: 0; font-size: 13px; color: #b8c8c0; }
.footer-links a:hover { color: white; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; color: #7f958b; font-size: 11px; }

@media (max-width: 1050px) {
  .desktop-nav, .header-action { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary {
    list-style: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 20px; height: 2px; background: var(--forest); }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 50px;
    width: min(280px, 80vw);
    padding: 12px;
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(8, 43, 34, 0.16);
    display: flex;
    flex-direction: column;
  }
  .mobile-menu nav a { padding: 12px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .match-poster { justify-self: start; width: min(560px, 100%); transform: none; }
  .pitch-lines { width: 60%; }
  .stat-strip { grid-template-columns: 1.1fr repeat(3, 1fr); }
  .data-note { display: none; }
  .match-grid { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: 1fr 1fr; }
  .news-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { height: 74px; padding: 0 20px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 6.5px; }
  .crest { width: 42px; height: 48px; }
  .hero { padding: 58px 22px 48px; min-height: auto; gap: 45px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-intro { font-size: 15px; }
  .pitch-lines { inset: auto -100px 90px auto; width: 320px; height: 360px; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); padding: 0 16px; }
  .stat-intro { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 0; }
  .stat-intro p { margin: 0; }
  .stat { padding: 20px 8px; }
  .stat:last-of-type { border-right: 0; }
  .stat strong { font-size: 31px; }
  .section { padding: 72px 22px; }
  .section-heading { align-items: start; }
  .section-heading > a { margin-top: 28px; }
  .scoreboard { padding: 30px 12px; }
  .team-mark { width: 58px; height: 65px; }
  .scoreboard h3 { font-size: 16px; }
  .venue { gap: 12px; flex-wrap: wrap; }
  .youth-section { grid-template-columns: 1fr; }
  .youth-visual { min-height: 400px; }
  .visual-ball { width: 180px; height: 180px; }
  .visual-number { font-size: 250px; }
  .youth-copy { padding: 68px 22px; }
  .news-list { grid-template-columns: 1fr; }
  .news-item:last-child { grid-column: auto; }
  .about-section { padding: 72px 22px; grid-template-columns: 1fr; gap: 15px; }
  .join-section { padding: 45px 22px; grid-template-columns: 64px 1fr; }
  .join-mark { width: 56px; height: 64px; }
  .join-details { grid-column: 1 / -1; }
  .join-details summary { width: 100%; }
  footer { padding: 58px 22px 24px; }
  .footer-links { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 420px) {
  .brand-copy small { display: none; }
  .hero-actions .button { width: 100%; }
  .poster-copy h2 { font-size: 19px; }
  .scoreboard { grid-template-columns: 1fr 0.65fr 1fr; }
  .scoreboard > p strong { font-size: 25px; }
  .team-mark { width: 50px; height: 57px; }
  .section-heading { flex-direction: column; }
  .join-section { grid-template-columns: 1fr; }
  .join-mark { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* WordPress content templates */
.news-photo { display: block; }
.news-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-shell {
  min-height: 60vh;
  padding: 72px 7.5vw 96px;
  background: var(--cream);
}
.content-shell-inner { max-width: 1120px; margin: 0 auto; }
.content-kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font: 800 12px Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.entry-title {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.entry-meta { color: #718079; font-size: 13px; margin-bottom: 30px; }
.entry-card {
  background: var(--paper);
  border-top: 4px solid var(--orange);
  padding: clamp(24px, 5vw, 58px);
  box-shadow: 0 18px 50px rgba(8, 43, 34, 0.08);
}
.entry-content { font-size: 16px; line-height: 1.95; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content img { max-width: 100%; height: auto; }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.archive-card {
  background: var(--paper);
  border-top: 4px solid var(--forest);
  padding: 26px;
}
.archive-card time { color: var(--orange); font-size: 12px; font-weight: 800; }
.archive-card h2 { font-size: 21px; line-height: 1.5; margin: 13px 0; }
.archive-card p { color: #687670; line-height: 1.75; }
.archive-card > a { display: inline-block; color: var(--orange); font-weight: 800; margin-top: 10px; }
.news-placeholder { display: block; border-top: 1px solid var(--line); padding-top: 15px; margin-top: 22px; color: #7b8984; font-size: 12px; }
.match-archive-card h2 span { color: var(--orange); font: italic 800 15px Georgia, serif; }
.archive-score { color: var(--forest) !important; font: 800 36px Georgia, serif; margin: 12px 0 !important; }
.match-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
}
.match-detail-grid > div { background: var(--cream); padding: 20px; }
.match-detail-grid small { display: block; color: #718079; margin-bottom: 8px; }
.match-detail-grid strong { color: var(--forest); font-size: 18px; }
.pagination { margin-top: 38px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { background: var(--paper); padding: 10px 14px; }
.pagination .current { background: var(--orange); color: #fff; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 900px) {
  .archive-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .content-shell { padding: 55px 22px 72px; }
  .archive-grid { grid-template-columns: 1fr; }
  .entry-card { padding: 24px; }
  .match-detail-grid { grid-template-columns: 1fr; }
}
