/* Mairye United FC — public site styles
   Palette is taken directly from the club crest. */

:root {
  --green: #1B5E20;        /* main brand colour — crest field */
  --green-deep: #0F4A1A;   /* crest stripe */
  --green-ink: #0A3512;    /* text on light, footer */
  --orange: #F26A1B;       /* crest border */
  --gold: #E8C547;         /* crest tools */
  --cream: #F7F5EE;        /* page background */
  --paper: #FFFFFF;
  --ink: #17211A;
  --muted: #5C6A5F;
  --line: #DCE3DC;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --container-max: 1180px;

  /* The vertical pitch stripes from the crest, reused as a texture */
  --stripes: repeating-linear-gradient(90deg, var(--green) 0 36px, var(--green-deep) 36px 72px);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}

.container { max-width: var(--container-max); }

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--green-ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 2000;
  background: var(--orange); color: #fff; padding: .5rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { left: 8px; }

img { max-width: 100%; height: auto; }

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .02em;
  border-radius: var(--radius);
  padding: .55rem 1.25rem;
  border-width: 2px;
}
.btn-green { background: var(--green); border-color: var(--green); color: #fff; }
.btn-green:hover, .btn-green:focus { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.btn-orange { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-orange:hover, .btn-orange:focus { background: #d95b12; border-color: #d95b12; color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.7); }

/* ---------- Header ---------- */
.header-strip {
  background: var(--green-ink);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  padding: .3rem 0;
}
.strip-link { color: var(--gold); text-decoration: none; }
.strip-link:hover { color: #fff; }

.main-nav {
  background: var(--green);
  padding: .6rem 0;
  border-bottom: 4px solid var(--orange);
}
.navbar-brand { display: flex; align-items: center; gap: .75rem; color: #fff; }
.navbar-brand img { width: 56px; height: auto; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: .01em;
  color: #fff;
}
.main-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  padding: .5rem .85rem;
  border-bottom: 3px solid transparent;
}
.main-nav .nav-link:hover { color: #fff; }
.main-nav .nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

.navbar-toggler {
  border: 0; padding: .35rem .25rem; display: flex; flex-direction: column; gap: 5px;
}
.navbar-toggler span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px; }
.navbar-toggler:focus { box-shadow: none; outline: 3px solid var(--gold); }

@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: .75rem; border-top: 1px solid rgba(255,255,255,.2); padding-top: .5rem; }
  .main-nav .nav-link { border-bottom: 0; border-left: 3px solid transparent; padding-left: .75rem; }
  .main-nav .nav-link.active { border-left-color: var(--gold); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  min-height: min(88vh, 860px);
  background: var(--green-ink) center / cover no-repeat;
  display: flex; align-items: flex-end;
}
.hero-nophoto { background-image: var(--stripes); }
.hero-nophoto::after {
  content: ""; position: absolute; right: 8%; top: 6%; width: 420px; max-width: 60%; aspect-ratio: 461/509;
  background: url("../img/logo.png") center / contain no-repeat; opacity: .12; pointer-events: none;
}
.hero::before {
  /* darken for legibility: strongest bottom-left where the story sits */
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding: 7rem clamp(1rem, 4.5vw, 4rem) 0;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2.5rem;
}
.hero-story { padding-bottom: 2.5rem; max-width: 60ch; }
.hero-rule { width: 64px; height: 3px; background: var(--gold); margin-bottom: .9rem; }
.hero-kicker { font-family: var(--font-body); font-size: .9rem; margin-bottom: .6rem; color: rgba(255,255,255,.8); }
.hero-kicker span { color: var(--gold); font-weight: 600; margin-right: .5rem; }
.hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 700; margin-bottom: .75rem; }
.hero h1 a { color: inherit; text-decoration: none; }
.hero h1 a:hover { color: var(--gold); }
.hero-excerpt { font-size: 1.1rem; line-height: 1.5; color: rgba(255,255,255,.92); margin-bottom: 1.5rem; max-width: 52ch; }

/* "More" button with a clipped corner */
.btn-cut {
  display: inline-block; position: relative; color: #fff; text-decoration: none;
  font-weight: 600; font-size: 1rem; padding: .55rem 1.5rem;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.9);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}
.btn-cut::after {
  content: ""; position: absolute; top: -1px; right: -1px; width: 12px; height: 12px;
  background: linear-gradient(to bottom left, transparent 49%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 58%, transparent 59%);
}
.btn-cut:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Match cards */
.hero-matches { display: flex; align-items: flex-end; gap: 0; margin-bottom: -1px; }
.mc-card {
  position: relative; width: 400px; max-width: 100%;
  padding: 1.5rem 1.4rem 1.4rem; color: var(--ink);
  box-shadow: 0 -12px 30px rgba(0,0,0,.25);
}
.mc-card::before {
  /* small diagonal stripe accent, as on the crest tools */
  content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 10px;
  background: repeating-linear-gradient(-55deg, var(--green-deep) 0 6px, transparent 6px 12px);
}
.mc-next { background: var(--gold); }
.mc-last { background: #fff; }
.mc-last::before { background: repeating-linear-gradient(-55deg, var(--green) 0 6px, transparent 6px 12px); }
.mc-head { text-align: center; line-height: 1.3; margin-bottom: 1rem; }
.mc-date { display: block; font-size: .85rem; color: var(--muted); }
.mc-next .mc-date { color: rgba(10,53,18,.75); }
.mc-comp { display: block; font-weight: 600; font-size: .95rem; }
.mc-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: .5rem; }
.mc-team { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
.mc-team .crest { width: 74px; height: 74px; display: grid; place-items: center; }
.mc-team .crest img { max-width: 100%; max-height: 100%; object-fit: contain; }
.crest-fallback {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
}
.mc-name { font-weight: 600; font-size: 1rem; line-height: 1.15; }
.mc-centre { align-self: center; font-family: var(--font-display); font-weight: 800; font-size: 2.3rem; line-height: 1; white-space: nowrap; padding: 0 .25rem; color: var(--green-ink); }
.mc-score { font-size: 3rem; letter-spacing: .04em; }
.mc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(0,0,0,.15); }
.mc-btn {
  display: block; text-align: center; text-decoration: none; font-weight: 600; font-size: 1rem;
  padding: .6rem .5rem; border: 2px solid transparent; transition: .15s;
}
.mc-btn-solid { background: var(--green-ink); border-color: var(--green-ink); color: #fff; }
.mc-btn-solid:hover { background: var(--green); border-color: var(--green); color: #fff; }
.mc-btn-green { background: var(--green); border-color: var(--green); }
.mc-btn-green:hover { background: var(--green-ink); border-color: var(--green-ink); }
.mc-btn-outline { background: transparent; border-color: var(--green-ink); color: var(--green-ink); }
.mc-btn-outline:hover { background: rgba(0,0,0,.08); color: var(--green-ink); }
.mc-btn-outline-green { border-color: var(--green); color: var(--green); }

@media (max-width: 1299.98px) {
  .mc-card { width: 340px; padding: 1.4rem 1.2rem 1.3rem; }
  .mc-team .crest { width: 60px; height: 60px; }
  .mc-centre { font-size: 1.9rem; }
  .mc-score { font-size: 2.5rem; }
}
@media (max-width: 991.98px) {
  .hero { min-height: 0; align-items: stretch; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 34vh; }
  .hero-story { padding-bottom: 2rem; }
  .hero-matches { flex-direction: column; align-items: stretch; gap: .5rem; margin: 0 calc(-1 * clamp(1rem, 4.5vw, 4rem)) -1px; }
  .mc-card { width: auto; box-shadow: none; }
  .mc-card:first-child { margin-top: .5rem; }
}
@media (max-width: 575.98px) {
  .hero-inner { padding-top: 3.5rem; }
  .mc-actions { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.75rem; border-bottom: 3px solid var(--green); padding-bottom: .5rem;
}
.section-head h2 { margin: 0; }
.section-head a { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; white-space: nowrap; }

/* Page banner for inner pages */
.page-banner {
  background: var(--green);
  border-bottom: 4px solid var(--orange);
  color: #fff; padding: 2.25rem 0;
}
.page-banner h1 { color: #fff; margin: 0; }
.page-banner p { margin: .5rem 0 0; color: rgba(255,255,255,.8); max-width: 60ch; }

/* ---------- News ---------- */
.news-card {
  background: var(--paper); height: 100%;
  border: 1px solid var(--line); border-bottom: 3px solid var(--green);
  display: flex; flex-direction: column;
}
.news-card .thumb {
  aspect-ratio: 16/9; background: var(--stripes); overflow: hidden;
  display: grid; place-items: center;
}
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .thumb .crest { width: 30%; opacity: .9; }
.news-card .body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.news-card .cat { color: var(--orange); font-weight: 600; font-size: .85rem; }
.news-card h3 { margin: 0; font-size: 1.45rem; }
.news-card h3 a { color: var(--green-ink); text-decoration: none; }
.news-card h3 a:hover { color: var(--orange); }
.news-card time { color: var(--muted); font-size: .85rem; margin-top: auto; }
.news-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.news-featured { border: 0; border-left: 6px solid var(--orange); }
.news-featured .thumb { aspect-ratio: 21/9; }
.news-featured h3 { font-size: 2.1rem; }

/* Article page */
.article-hero img { width: 100%; max-height: 480px; object-fit: cover; }
.article-body { max-width: 70ch; font-size: 1.125rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body img { margin: 1rem 0; }
.article-meta { color: var(--muted); font-size: .95rem; }

/* More news sidebar on article pages */
.more-news { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.more-news-link {
  display: grid; grid-template-columns: 112px 1fr; gap: .9rem; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--green);
  text-decoration: none; color: var(--ink); padding: .6rem;
}
.more-news-link:hover { border-left-color: var(--orange); color: var(--ink); }
.more-news-thumb { aspect-ratio: 4/3; background: var(--stripes); display: grid; place-items: center; overflow: hidden; }
.more-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.more-news-thumb .crest { width: 40%; height: auto; }
.more-news-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.more-news-text .cat { color: var(--orange); font-weight: 600; font-size: .8rem; }
.more-news-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.15; color: var(--green-ink); }
.more-news-link:hover .more-news-title { color: var(--orange); }
.more-news-text time { color: var(--muted); font-size: .8rem; }

/* ---------- Fixtures & results ---------- */
.match-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.match-row {
  background: var(--paper); border: 1px solid var(--line);
  display: grid; grid-template-columns: 110px 1fr auto 1fr 150px;
  align-items: center; gap: 1rem; padding: .9rem 1.1rem;
}
.match-row .date { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.1; }
.match-row .date small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: .8rem; }
.match-row .team { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.match-row .team.us { color: var(--green); }
.match-row .team.home { text-align: right; }
.match-row .score {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; padding: .15rem .7rem;
  border-radius: var(--radius); min-width: 4.6rem; text-align: center; background: var(--cream);
}
.match-row .score.W { background: var(--green); color: #fff; }
.match-row .score.L { background: var(--orange); color: #fff; }
.match-row .score.D { background: var(--gold); color: var(--green-ink); }
.match-row .comp { color: var(--muted); font-size: .85rem; text-align: right; }
.match-row .comp span { display: block; }
.match-row .scorers { grid-column: 1 / -1; color: var(--muted); font-size: .85rem; border-top: 1px dashed var(--line); padding-top: .4rem; }

@media (max-width: 767.98px) {
  .match-row { grid-template-columns: 1fr auto 1fr; }
  .match-row .date, .match-row .comp { grid-column: 1 / -1; text-align: left; }
  .match-row .comp span { display: inline; }
  .match-row .team { font-size: 1.1rem; }
}

.form-guide { display: inline-flex; gap: .3rem; }
.form-guide span {
  display: inline-grid; place-items: center; width: 1.9rem; height: 1.9rem;
  font-family: var(--font-display); font-weight: 800; border-radius: var(--radius); color: #fff;
}
.form-guide .W { background: var(--green); }
.form-guide .L { background: var(--orange); }
.form-guide .D { background: var(--gold); color: var(--green-ink); }

.nav-tabs { border-bottom: 2px solid var(--green); }
.nav-tabs .nav-link {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--muted);
  border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.nav-tabs .nav-link.active { color: var(--green); background: transparent; border-bottom-color: var(--orange); }

/* ---------- League table ---------- */
.league-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); }
.league-table th, .league-table td { padding: .6rem .5rem; text-align: center; font-size: .95rem; border-bottom: 1px solid var(--line); white-space: nowrap; }
.league-table thead th { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; background: var(--green); color: #fff; border: 0; }
.league-table thead th.team { text-align: left; }
.league-table td.pos { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--muted); width: 2.6rem; }
.league-table td.team { text-align: left; white-space: normal; }
.league-table td.team .crest { display: inline-grid; place-items: center; width: 30px; height: 30px; vertical-align: middle; margin-right: .6rem; }
.league-table td.team .crest img { max-width: 100%; max-height: 100%; object-fit: contain; }
.league-table td.team .crest .crest-fallback { width: 28px; height: 28px; font-size: .7rem; }
.league-table td.team .name { font-weight: 600; vertical-align: middle; }
.league-table td.team .short { display: none; font-weight: 600; vertical-align: middle; }
.league-table td.pts { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--green-ink); }
.league-table tr.us td { background: #FBF3C9; }
.league-table tr.us td.pos { color: var(--orange); }
.league-table tr.us td.team { box-shadow: inset 4px 0 0 var(--orange); }
.league-table tbody tr:first-child td.pos { color: var(--green); }
.league-table td.form .form-guide span { width: 1.5rem; height: 1.5rem; font-size: .8rem; }
.league-table.compact th, .league-table.compact td { padding: .45rem .4rem; font-size: .9rem; }
@media (max-width: 575.98px) {
  .league-table td.team .name { display: none; }
  .league-table td.team .short { display: inline; }
  .league-table th, .league-table td { padding: .5rem .35rem; }
}

/* ---------- Players ---------- */
.player-card {
  background: var(--paper); border: 1px solid var(--line); position: relative;
  text-decoration: none; color: var(--ink); display: block; overflow: hidden; height: 100%;
}
.player-card .photo { aspect-ratio: 3/4; background: var(--green); display: grid; place-items: center; overflow: hidden; }
.player-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.player-card .photo .initials { font-family: var(--font-display); font-size: 4rem; font-weight: 800; color: rgba(255,255,255,.35); }
.player-card .number {
  position: absolute; top: .5rem; left: .5rem;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1;
  color: var(--gold); text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.player-card .info { padding: .85rem 1rem; border-top: 3px solid var(--orange); }
.player-card .name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.1; color: var(--green-ink); }
.player-card .pos { color: var(--muted); font-size: .9rem; }
.player-card:hover .name { color: var(--orange); }

.position-group h2 { display: flex; align-items: center; gap: .75rem; margin: 2.25rem 0 1rem; font-size: 1.75rem; }
.position-group h2::after { content: ""; flex: 1; height: 2px; background: var(--line); }

/* Player profile */
.profile-photo { aspect-ratio: 3/4; background: var(--stripes); display: grid; place-items: center; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-photo .initials { font-family: var(--font-display); font-size: 6rem; font-weight: 800; color: rgba(255,255,255,.3); }
.profile-number { font-family: var(--font-display); font-weight: 800; font-size: 6rem; line-height: .9; color: var(--orange); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-grid div { background: var(--paper); padding: .85rem 1rem; }
.stat-grid b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-grid small { color: var(--muted); }

/* ---------- Staff ---------- */
.staff-card { display: flex; gap: 1.1rem; background: var(--paper); border: 1px solid var(--line); padding: 1rem; height: 100%; }
.staff-card .photo { flex: 0 0 96px; width: 96px; height: 96px; border-radius: 50%; background: var(--green); overflow: hidden; display: grid; place-items: center; border: 3px solid var(--gold); }
.staff-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card .photo .initials { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: rgba(255,255,255,.7); }
.staff-card .role { color: var(--orange); font-weight: 600; font-size: .9rem; }
.staff-card h3 { font-size: 1.4rem; margin: 0 0 .35rem; }
.staff-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Sponsors band ---------- */
.sponsors-band { background: var(--paper); border-top: 1px solid var(--line); padding: 2rem 0; }
.band-title { font-size: 1.1rem; color: var(--muted); font-weight: 600; margin-bottom: 1rem; text-align: center; }
.sponsor-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2.5rem; }
.sponsor { display: grid; place-items: center; text-decoration: none; filter: grayscale(1); opacity: .75; transition: .2s; }
.sponsor:hover { filter: none; opacity: 1; }
.sponsor img { max-height: 56px; width: auto; }
.sponsor-principal img { max-height: 76px; }
.sponsor-name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--green-ink); }
.sponsor-principal .sponsor-name { font-size: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-ink); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; border-top: 4px solid var(--orange); }
.footer-heading { color: var(--gold); font-size: 1.2rem; margin-bottom: .75rem; }
.footer-lede { max-width: 36ch; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .35rem; }
.footer-links a { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .9rem; }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---------- Misc ---------- */
.history-timeline { list-style: none; padding: 0; margin: 0; border-left: 3px solid var(--green); }
.history-timeline li { padding: 0 0 1.5rem 1.5rem; position: relative; }
.history-timeline li::before { content: ""; position: absolute; left: -9px; top: .35rem; width: 15px; height: 15px; border-radius: 50%; background: var(--orange); border: 3px solid var(--cream); }
.history-timeline b { font-family: var(--font-display); font-size: 1.6rem; color: var(--green); display: block; line-height: 1; margin-bottom: .25rem; }

.pagination .page-link { color: var(--green); border-color: var(--line); font-family: var(--font-display); font-weight: 600; }
.pagination .active .page-link { background: var(--green); border-color: var(--green); }

.empty { background: var(--paper); border: 1px dashed var(--line); padding: 2rem; text-align: center; color: var(--muted); }
