/* Declan's Friday Brief — dark, pitch-side, readable on a phone.
   Colours are named so you can tweak them in one place. */

:root {
  --pitch: #07140e;
  --pitch-deep: #040a07;
  --turf: #10261a;
  --line: rgba(244, 234, 215, 0.07);
  --gold: #e0b03a;
  --gold-soft: #c9a45a;
  --cream: #f3ead8;
  --muted: #b4c3b6;
  --card: #0c1d15;
  --edge: #1e3a2a;
  --ireland: #4ea072;
  --south: #d4b15a;
  --other: #8aa7c4;
  --ink-on-gold: #1a1204;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--cream);
  background-color: var(--pitch-deep);
  /* Faint pitch stripes — vertical, like a field seen from the stand. */
  background-image:
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(180deg, var(--pitch) 0%, var(--pitch-deep) 100%);
  background-size: 72px 100%, 100% 100%;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 10;
  padding: 0.4rem 0.7rem;
  background: var(--gold);
  color: var(--ink-on-gold);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 0.75rem;
}

.masthead {
  border-bottom: 1px solid var(--edge);
  background: linear-gradient(180deg, rgba(4, 10, 7, 0.92), rgba(7, 20, 14, 0.88));
}

.masthead__inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: 1.25rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ball {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.brand__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.brand__name {
  margin: 0.1rem 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.masthead__aside {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.masthead__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.masthead__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.masthead__links a {
  color: var(--gold);
  text-decoration: none;
}

.masthead__links a:hover,
.masthead__links a:focus-visible,
.masthead__links a[aria-current="page"] {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.masthead__links--quiet {
  gap: 0.7rem;
  font-size: 0.82rem;
}
.masthead__links--quiet a {
  color: var(--muted);
}

 .brief > h1 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
}
.brief > h1 + p { color: var(--muted); }
.brief {

  max-width: 44rem;
  margin: 0 auto;
  padding: 1.4rem 1.15rem 3rem;
}

.week-header {
  margin-bottom: 1.4rem;
  padding-bottom: 1.15rem;
  border-bottom: 2px solid var(--gold);
}

.week-header h1 {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.week-header .range {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.week-header .intro {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.status {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--edge);
  background: var(--turf);
  color: var(--cream);
}

.status[data-kind="error"] {
  border-color: #8a3d32;
  background: #1a0e0c;
}

.status[data-kind="loading"] {
  color: var(--muted);
}

.section {
  margin-bottom: 2rem;
}

.section__label {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.section__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section[data-id="ireland"] .section__dot {
  background: var(--ireland);
}

.section[data-id="south"] .section__dot {
  background: var(--south);
}

.section[data-id="other"] .section__dot {
  background: var(--other);
}

.section h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.section__blurb {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.story {
  margin: 0 0 0.85rem;
  padding: 1rem 1rem 1rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
}

.section[data-id="ireland"] .story {
  border-left-color: var(--ireland);
}

.section[data-id="south"] .story {
  border-left-color: var(--south);
}

.section[data-id="other"] .story {
  border-left-color: var(--other);
}

.story__figure {
  margin: 0 0 0.7rem;
}

.story__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #0c1c16;
}

.story__credit {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.story h3 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
}

.story h3 a {
  color: var(--cream);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.story h3 a:hover,
.story h3 a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
}

.story .summary {
  margin: 0;
  color: #d7e0d6;
  font-size: 0.98rem;
}

.story__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-top: 0.7rem;
}

.scoreline {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source {
  color: var(--muted);
  font-size: 0.82rem;
}

.source a {
  color: var(--gold-soft);
  text-decoration: none;
}

.source a:hover,
.source a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.15rem 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__name {
  margin: 0 0 0.35rem;
  color: var(--cream);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0 0 0.35rem;
}

.site-footer code,
.noscript code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.86em;
  color: var(--gold-soft);
}

.noscript {
  max-width: 44rem;
  margin: 0 auto 2rem;
  padding: 0 1.15rem;
  color: var(--cream);
}

/* Laptop: a little more air, still one readable column. */
@media (min-width: 720px) {
  .masthead__inner,
  .brief,
  .site-footer {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }

  .masthead__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.6rem;
    padding-bottom: 1.35rem;
  }

  .masthead__aside {
    max-width: 18rem;
    text-align: right;
    align-items: flex-end;
  }

  .masthead__note {
    font-size: 0.88rem;
  }

  .brand__name {
    font-size: 1.85rem;
  }

  .story {
    padding: 1.15rem 1.2rem 1.15rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Fixtures strip — compact, not a season calendar. */

.fx-nav,
.fx-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}
.chip {
  padding: 0.42rem 0.78rem;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
}
.chip:hover,
.chip.is-on {
  background: var(--gold);
  color: var(--ink-on-gold);
  border-color: var(--gold);
}
.fx-group[data-id="urc"] .fx-group__dot,
.fx-group[data-id^="urc-"] .fx-group__dot {
  background: #c45a2a;
}
.fx-group[data-id="sixnations"] .fx-group__dot,
.fx-group[data-id^="6n-"] .fx-group__dot {
  background: var(--ireland);
}
.fx-group[data-id="ail"] .fx-group__dot {
  background: #e0b03a;
}


.ail-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.25rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
}
.ail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.ail-table th,
.ail-table td {
  padding: 0.42rem 0.55rem;
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.ail-table thead th {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ail-table thead th:first-child,
.ail-table tbody th {
  text-align: left;
}
.ail-table tbody th {
  font-weight: 500;
  color: var(--cream);
}
.ail-table td {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ail-table tbody tr:last-child th,
.ail-table tbody tr:last-child td {
  border-bottom: 0;
}


.fixtures {
  margin: 0 0 2rem;
}

.fixtures__title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fx-group {
  margin-bottom: 1.25rem;
}

.fx-group__label {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.fx-group__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.fx-group[data-id="women"] .fx-group__dot {
  background: #c97bb0;
}

.fx-group[data-id="autumn"] .fx-group__dot {
  background: var(--ireland);
}

.fx-group h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fx-row__result {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}
.fx-report {
  color: var(--gold);
  font-size: 0.82rem;
  white-space: nowrap;
}
.fx-report:hover {
  color: var(--gold-soft);
}

.fx-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem 0.75rem;
  margin: 0 0 0.45rem;
  padding: 0.7rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
}

.fx-row__teams {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
}

.fx-row__meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.fx-row__kick {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.fx-status {
  display: inline-block;
  margin-right: 0.4rem;
  padding: 0.05rem 0.35rem;
  border: 1px solid var(--edge);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fx-status[data-status="ft"] {
  border-color: var(--gold-soft);
  color: var(--gold);
}

.fx-status[data-status="live"] {
  border-color: #c45a2a;
  color: #e8a07a;
}

.fx-why {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (min-width: 720px) {
  .fx-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
  }
}

.brand {
  text-decoration: none;
  color: inherit;
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0 0 1.6rem;
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 0.7rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 10px 10px 2px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.tile:hover,
.tile:focus-visible {
  border-color: var(--gold-soft);
  color: var(--gold);
}

.tile[aria-pressed="true"] {
  background: #1c3a24;
  border-color: var(--ireland);
  box-shadow: inset 3px 0 0 var(--ireland);
}

.tile--link {
  background: #1a2430;
}

@media (min-width: 720px) {
  .tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.week-header .compiled {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.masthead__note a {
  color: var(--gold);
  text-decoration: none;
}

.masthead__note a:hover,
.masthead__note a:focus-visible {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.tiles {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
  .tiles {
    grid-template-columns: repeat(auto-fit, minmax(8.2rem, 1fr));
  }
}

.listen-week,
.listen-cards {
  margin: 0 0 1.8rem;
}

.listen-empty {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.listen-week__list {
  display: grid;
  gap: 0.45rem;
}

.listen-week__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  padding: 0.7rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
}

.listen-week__show {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listen-week__dot {
  color: var(--muted);
}

.listen-week__title a {
  color: var(--cream);
  text-decoration: none;
}

.listen-week__title a:hover,
.listen-week__title a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.listen-week__date {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.listen-badge {
  display: inline-block;
  padding: 0.05rem 0.35rem;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pod-card {
  margin: 0 0 0.7rem;
  padding: 1rem 1rem 1rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
}

.pod-card__kicker h2 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pod-card__slot {
  margin: 0.2rem 0 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.pod-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
}

.pod-card h3 {
  margin: 0.55rem 0 0.25rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.28;
}

.pod-card__date {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.pod-card__note {
  margin: 0.45rem 0 0;
  color: #d7e0d6;
}

.pod-card__listen {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.pod-card__listen:hover,
.pod-card__listen:focus-visible {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.week-header .sources {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.fx-times {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.weekend-strip {
  margin: 0 0 1.6rem;
}

.weekend-strip__more {
  margin: 0.55rem 0 0;
}

.weekend-strip__more a,
.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.weekend-strip__more a:hover,
.weekend-strip__more a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.scoreline {
  text-transform: none;
  letter-spacing: 0;
}

.story h3 a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.story h3 a:hover,
.story h3 a:focus-visible {
  color: var(--cream);
}

.tile {
  color: var(--cream);
  background: var(--card);
}

.tile--link {
  background: var(--card);
}

.tile[aria-pressed="true"] {
  background: #1c3a24;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
}

.to-top {
  position: fixed;
  right: 1.05rem;
  bottom: 1.15rem;
  z-index: 30;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  background: #12261b;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem) scale(0.94);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.to-top:hover,
.to-top:focus-visible {
  background: var(--gold);
  color: var(--ink-on-gold);
  border-color: var(--gold);
  transform: translateY(-0.18rem) scale(1.04);
}

.to-top:active,
.to-top.is-launching {
  transform: translateY(-0.42rem) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .to-top,
  .to-top.is-visible,
  .to-top:hover,
  .to-top:focus-visible,
  .to-top:active,
  .to-top.is-launching {
    transition: none;
    transform: none;
  }
}

/* netlify-badge-hide: no vendor chrome */
a[href="https://www.netlify.com"],
a[href="https://www.netlify.com/"],
img[alt="Deploys by Netlify"],
img[alt*="Netlify"],
#netlify-badge,
.netlify-badge,
[class*="nf-badge"],
iframe[title*="Netlify"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.results-note {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.who-read {
  line-height: 1.7;
}
.who-read a {
  color: var(--gold);
  text-decoration: none;
}
.who-read a:hover,
.who-read a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a[href^="mailto:"] {
  color: var(--gold);
  text-decoration: none;
}
a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus-visible {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.go-local {
  margin: 0 0 1.6rem;
}

.go-local__more {
  margin: 0.55rem 0 0;
}

.go-local__more a {
  color: var(--gold);
  text-decoration: none;
}

.go-local__more a:hover,
.go-local__more a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.injury-board {
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.9rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
}

.injury-board .fixtures__title {
  margin-bottom: 0.45rem;
  color: var(--gold);
}

.injury-board__item {
  margin: 0;
}
.injury-board__item + .injury-board__item {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--edge);
}

.injury-board__name {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
}

.injury-board__detail {
  margin: 0.25rem 0 0;
  color: #d7e0d6;
  font-size: 0.92rem;
}

.injury-board__meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.injury-board__meta a {
  color: var(--gold);
  text-decoration: none;
}

.injury-board__meta a:hover,
.injury-board__meta a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}


.beat-desk .intro {
  margin: 0.7rem 0 0;
}
.beat-links {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.beat-links li {
  margin: 0 0 0.45rem;
}
.beat-links a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.beat-links a:hover,
.beat-links a:focus-visible {
  color: var(--cream);
}

.squads-page .compiled,
.injury-page .compiled {
  margin: 0.4rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.squad-card,
.lineup-card {
  margin: 0 0 0.85rem;
  padding: 0.95rem 1rem 1rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
}

.squad-card h2,
.lineup-card__teams {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.squad-card h3 {
  margin: 0.7rem 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.squad-card__panel,
.squad-card__note {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.squad-names {
  margin: 0;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.55;
}

.squad-arrivals {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--cream);
  font-size: 0.95rem;
}

.squad-arrivals li + li {
  margin-top: 0.15rem;
}

.squad-card__source {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
}

.squad-card__source a,
.lineup-card .fx-report {
  color: var(--gold);
  text-decoration: none;
}

.squad-card__source a:hover,
.squad-card__source a:focus-visible,
.lineup-card .fx-report:hover,
.lineup-card .fx-report:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lineups {
  margin: 1.6rem 0 0;
}

.lineups__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.lineup-card__meta {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.injury-page .injury-board {
  margin-top: 0.2rem;
}

.beat-about {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.prov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1rem 0 1.6rem;
}
@media (min-width: 700px) {
  .prov-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.prov-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
  overflow: hidden;
}
.prov-card:hover,
.prov-card:focus-visible {
  border-color: var(--gold-soft);
}
.prov-card__bar {
  display: block;
  height: 0.38rem;
  background: var(--gold);
}
.prov-card__body {
  padding: 0.9rem 1rem 1rem;
}
.prov-card__head,
.prov-hero__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.55rem;
}
.prov-card__crest {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.prov-card h2,
.prov-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}
.prov-card h2 {
  font-size: 1.18rem;
  color: var(--cream);
}
.prov-card__ground,
.prov-hero__ground,
.prov-hero__also {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.prov-card__meta {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.prov-card__mark {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}
.prov-back {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
}
.prov-back a {
  color: var(--gold);
  text-decoration: none;
}
.prov-back a:hover,
.prov-back a:focus-visible {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.prov-hero {
  margin: 0 0 1.4rem;
  padding: 0 0 1rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
  overflow: hidden;
}
.prov-hero__head,
.prov-hero p {
  padding-left: 1rem;
  padding-right: 1rem;
}
.prov-hero__head {
  padding-top: 0.9rem;
}
.prov-swatches {
  display: flex;
  gap: 0.35rem;
  margin: 0.4rem 0 0;
}
.prov-swatch {
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid var(--edge);
  border-radius: 2px;
}
.prov-squad,
.prov-fixtures,
.ireland-block {
  margin: 0 0 1.6rem;
}
.prov-squad h2,
.prov-fixtures h2,
.ireland-block__title {
  margin: 0 0 0.35rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}
.prov-squad h3,
.prov-pos {
  margin: 0.7rem 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.ireland-block__more {
  margin: 0.35rem 0 0.9rem;
}
.ireland-block__more a {
  color: var(--gold);
  text-decoration: none;
}
.ireland-block__more a:hover,
.ireland-block__more a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.next-strip {
  margin: 0 0 1.25rem;
}
.next-card {
  margin: 0;
  padding: 0.7rem 0.9rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
}
.next-card__teams {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
}
.next-card__meta {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
.next-card__more {
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
}
.next-card__more a,
.hub-more a,
.hub-links a {
  color: var(--gold);
  text-decoration: none;
}
.next-card__more a:hover,
.next-card__more a:focus-visible,
.hub-more a:hover,
.hub-more a:focus-visible,
.hub-links a:hover,
.hub-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.beat-h {
  margin: 1.35rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.beat-desk .compiled {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hub-block {
  margin: 0 0 1.4rem;
}
.hub-block h2 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
}
.hub-more,
.hub-links {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
}
.hub-irl-mark {
  display: flex;
  align-items: center;
}
.hub-block .injury-board__item {
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 2px 8px 8px 2px;
}
.hub-block .injury-board__item + .injury-board__item {
  border-top: 1px solid var(--edge);
}

.hub-index {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
}
.hub-index__row {
  display: block;
  padding: 0.7rem 0.9rem 0.75rem;
  background: var(--card);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--gold);
  border-radius: 2px 8px 8px 2px;
  color: inherit;
  text-decoration: none;
}
.hub-index__row:hover,
.hub-index__row:focus-visible {
  border-color: var(--gold);
}
.hub-index__name {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
}
.hub-index__next {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}
