/* LionsPaper overrides (0.2.1) */

/* Team colors */
:root{
  --north:#1f5fbf; /* Blue */
  --south:#f0c419; /* Yellow */
}

.team-north{ color: var(--north); }
.team-south{ color: #8a6a00; } /* readable yellow */
.btn.team-north{
  border-color: rgba(31,95,191,.45);
  box-shadow: inset 0 0 0 1px rgba(31,95,191,.18);
}
.btn.team-south{
  border-color: rgba(240,196,25,.55);
  box-shadow: inset 0 0 0 1px rgba(240,196,25,.22);
}
.badge{
  display:inline-block;
  padding:4px 8px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
}
.badge.north{ border-color: rgba(31,95,191,.45); color: var(--north); }
.badge.south{ border-color: rgba(240,196,25,.55); color:#8a6a00; }

/* --- Home poster sizing (keep) --- */
.hero-image img,
.hero-poster {
  max-width: 240px;
  width: 100%;
  height: auto;
}
@media (max-width: 980px){
  .hero-image img,
  .hero-poster { max-width: 320px; }
}

/* --- Card grids (keep) --- */
.grid-cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
  margin: 10px 0;
}
.card-link{
  display:block;
  padding:12px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  background:#fff;
  text-decoration:none;
}
.card-link:hover{ background: rgba(0,0,0,.02); }
.card-title{ font-weight:900; margin-bottom:4px; }
.divider{
  height:1px;
  background: rgba(0,0,0,.12);
  margin: 14px 0;
}
.season-subnav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 8px 0 10px 0;
}

/* Rosters hub */
.rosters-hero{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}
.rosters-hero h1{ margin:0; }
.rosters-note{ font-size:12px; color: rgba(0,0,0,.65); }

/* --- Roster table polish --- */
.page-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:14px;
}

/* Stacked pane cards inside a page (used for multi-block roster layouts) */
.pane-stack{ display:flex; flex-direction:column; gap:14px; }
.pane-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:14px;
}
.pane-card h2, .pane-card h3{ margin:0 0 10px 0; }
.page-card h1{
  margin:0 0 12px 0;
  font-weight:900;
  letter-spacing:.01em;
}
.page-card table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
}
.page-card thead th{
  text-align:left;
  font-weight:900;
  font-size:13px;
  letter-spacing:.02em;
  padding:10px 12px;
  border-bottom:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}
.page-card tbody td{
  padding:10px 14px;
  border-bottom:1px solid rgba(0,0,0,.08);
  vertical-align:top;
}
.page-card tbody tr:nth-child(even){ background: rgba(0,0,0,.015); }
.page-card tbody tr:last-child td{ border-bottom:none; }
.page-card tbody td:first-child,
.page-card thead th:first-child{
  width:72px;
  white-space:nowrap;
}
.page-card tbody td:nth-child(2),
.page-card thead th:nth-child(2){
  width:38%;
}
.page-card tbody td:nth-child(3),
.page-card thead th:nth-child(3){
  width:120px;
  white-space:nowrap;
}
@media (max-width: 680px){
  .page-card{ padding:12px; }
  .page-card table{ display:block; overflow-x:auto; white-space:nowrap; }
}

/* News */
.featured{
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:14px;
  background:#fff;
  margin-bottom:12px;
}
.featured-title{ font-weight:900; font-size:18px; margin:0 0 6px 0; }


/* === Team colors (North=Blue, South=Gold) === */
:root{
  --north:#174a8b; /* blue */
  --south:#b7860b; /* gold */
  --north-tint: rgba(23,74,139,.07);
  --south-tint: rgba(183,134,11,.10);
}

/* Pill/button team accents */
.btn.team-north, a.btn.team-north, .pill.team-north{
  border-color: rgba(23,74,139,.35);
  color: var(--north);
}
.btn.team-south, a.btn.team-south, .pill.team-south{
  border-color: rgba(183,134,11,.45);
  color: var(--south);
}

/* Auto-color buttons by link target when team class isn't present */
.btn-row a[href*="north"], .quick-buttons a[href*="north"], .season-hub a[href*="north"]{
  border-color: rgba(23,74,139,.35);
  color: var(--north);
}
.btn-row a[href*="south"], .quick-buttons a[href*="south"], .season-hub a[href*="south"]{
  border-color: rgba(183,134,11,.45);
  color: var(--south);
}

/* Roster page title + table styling by route */
.route-archive-2025-north-roster .page-title,
.route-archive-2025-north-roster h1:first-of-type{ color: var(--north); }
.route-archive-2025-south-roster .page-title,
.route-archive-2025-south-roster h1:first-of-type{ color: var(--south); }

/* Zebra tint */
.route-archive-2025-north-roster table tr:nth-child(even){ background: var(--north-tint); }
.route-archive-2025-south-roster table tr:nth-child(even){ background: var(--south-tint); }

/* Table header tint */
.route-archive-2025-north-roster table thead th{ background: rgba(23,74,139,.09); color: var(--north); }
.route-archive-2025-south-roster table thead th{ background: rgba(183,134,11,.12); color: var(--south); }

/* Coaches page section headings */
.route-archive-2025-coaches .content h2:first-of-type{ color: var(--south); }
.route-archive-2025-coaches .content h2:nth-of-type(2){ color: var(--north); }


/* v0.4.0 team styles: buttons, rosters, coaches zebra */
.btn.team-north{ color: var(--north); background: rgba(31,95,191,.06); border-color: rgba(31,95,191,.45); }
.btn.team-south{ color: #8a6a00; background: rgba(240,196,25,.10); border-color: rgba(240,196,25,.55); }

.page-card h1.team-north{ color: var(--north); }
.page-card h1.team-south{ color: #8a6a00; }

.page-card.roster-north thead th{ background: rgba(31,95,191,.10); color: var(--north); }
.page-card.roster-south thead th{ background: rgba(240,196,25,.14); color: #8a6a00; }
.page-card.roster-north tbody tr:nth-child(even){ background: rgba(31,95,191,.06); }
.page-card.roster-south tbody tr:nth-child(even){ background: rgba(240,196,25,.10); }

/* Coaches zebra by team */
.coach-table table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid rgba(0,0,0,.12);
  border-radius:12px;
  overflow:hidden;
}
.coach-table thead th{
  text-align:left;
  font-weight:900;
  font-size:13px;
  padding:10px 12px;
  border-bottom:1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.03);
}
.coach-table tbody td{
  padding:10px 14px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.coach-table tbody tr:last-child td{ border-bottom:none; }

.coach-table.north th, table.team-table.north thead th{ background: rgba(31,95,191,.10); color: var(--north); }
.coach-table.north tbody tr:nth-child(even){ background: rgba(31,95,191,.06); }
.coach-table.south th, table.team-table.south thead th{ background: rgba(240,196,25,.14); color:#8a6a00; }
.coach-table.south tbody tr:nth-child(even){ background: rgba(240,196,25,.10); }



/* Poster thumbnail + lightbox */
.poster-thumb-wrap { margin: 14px 0 18px 0; }
.poster-thumb-link { display:inline-block; text-decoration:none; }
.poster-thumb { width: 220px; max-width: 60vw; height: auto; border-radius: 10px; border: 1px solid rgba(0,0,0,0.15); box-shadow: 0 6px 16px rgba(0,0,0,0.12); }
.poster-thumb-caption { margin-top: 6px; text-align: center; }

.poster-lightbox { position: fixed; inset: 0; display: none; z-index: 9999; }
.poster-lightbox:target { display: block; }
.poster-lightbox-close { position: absolute; inset: 0; background: rgba(0,0,0,0.72); }
.poster-lightbox-inner { position: relative; max-width: min(980px, 92vw); margin: 6vh auto 0 auto; padding: 14px; background: #fff; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,0.25); }
.poster-lightbox-x { position: absolute; top: 10px; right: 14px; font-size: 28px; line-height: 1; text-decoration:none; color: rgba(0,0,0,0.65); }
.poster-lightbox-x:hover { color: rgba(0,0,0,0.9); }
.poster-full { width: 100%; height: auto; border-radius: 10px; }

.post-figure { margin: 16px 0; }
.post-figure img { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(0,0,0,0.10); }

.post-meta{margin:10px 0 14px 0;}
.post-meta .muted{margin:0;}


/* === News Index controls === */
.news-index-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin:12px 0 12px 0;
}
.news-filters{ display:flex; gap:8px; flex-wrap:wrap; }
.news-search{ flex:1 1 240px; display:flex; justify-content:flex-end; }
.news-search-input{
  width:min(360px, 100%);
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
}
.featured-excerpt{ margin-top:10px; line-height:1.35; }


/* Roster title row: keep opposing roster pill on same line */
.page-title-row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:6px}
.btn.btn-pill{padding:6px 10px;border-radius:999px;font-size:.9rem;line-height:1.1}


/* Sidebar hero image (50th Annual) */
.sidebar-hero{padding:10px;}
.sidebar-hero-image{display:block;width:100%;height:auto;max-width:100%;}


/* Global dual-border for plain content (site-wide) */
.page-card,
.pane-card,
.card.content{
  border-top: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-left: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-right: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
  background: #fff;
}

/* Keep inner cards from shrinking text too tight */
.page-card,
.pane-card,
.card.content{
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}


/* News cards: blue top/left, gold right/bottom */
.news-item{
  border-top: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-left: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-right: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
}


/* Events (current season): dual border + blue/yellow zebra rows */
.pane-card.dual-border{
  border-top: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-left: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-right: 2px solid var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
}

.events-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.events-table th,
.events-table td{
  padding: 10px 12px;
  vertical-align: top;
}

.events-table th.col-date,
.events-table td.col-date{
  white-space: nowrap;
}
.events-table thead th{
  font-weight: 900;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.events-table tbody tr:nth-child(odd){
  background: rgba(31,95,191,.06); /* blue tint */
}
.events-table tbody tr:nth-child(even){
  background: rgba(240,196,25,.10); /* yellow tint */
}
.events-table tbody tr:hover{
  background: rgba(0,0,0,.05);
}


/* Featured card spacing + typography */
#newsFeatured .news-item{
  margin: 12px 0 14px 0;
}
.news-item.is-featured .news-card-title{
  font-size: 1.25rem;
  font-weight: 900;
}
.news-card-title{ font-weight: 900; }
.news-card-excerpt{ margin-top: 8px; line-height: 1.35; }




/* Sidebar widgets: match site card styling */
.widget{
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 14px 14px;
  margin-bottom: 14px;
  border-top: 2px solid var(--lp-blue, #1d4ed8);
  border-left: 2px solid var(--lp-blue, #1d4ed8);
  border-right: 2px solid var(--lp-gold, #fbbf24);
  border-bottom: 2px solid var(--lp-gold, #fbbf24);
}
.widget.widget-hero{
  padding: 0;
  overflow: hidden;
}
.widget-hero-link{ display:block; }
.widget-hero-img{ display:block; width:100%; height:auto; }


/* Sidebar: Game Day Information */
.widget .widget-line { margin-top: 6px; line-height: 1.25; }
.widget .widget-line.strong { font-weight: 700; }
.widget .widget-line .label { font-weight: 700; }
.widget .widget-actions { margin-top: 10px; }
.widget .btn.btn-map {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border-top: 2px solid var(--lp-blue, #1d4ed8);
  border-left: 2px solid var(--lp-blue, #1d4ed8);
  border-right: 2px solid var(--lp-gold, #fbbf24);
  border-bottom: 2px solid var(--lp-gold, #fbbf24);
}
.widget .btn.btn-map:hover { filter: brightness(0.98); }



/* Post meta line: combine By + Published into one header row */
.post-meta-line{
  margin: 6px 0 14px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  border-top: 2px solid var(--lp-blue, #1d4ed8);
  border-left: 2px solid var(--lp-blue, #1d4ed8);
  border-right: 2px solid var(--lp-gold, #fbbf24);
  border-bottom: 2px solid var(--lp-gold, #fbbf24);
  font-weight: 700;
}
.post-meta-line a{ text-decoration: underline; }

/* Article images: keep them visually consistent and not oversized */
.card.content img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 14px auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
}

/* Right sidebar cards: add the same dual-tone border */
.widget .card{
  border-top: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-left: 2px solid var(--lp-blue, #1d4ed8) !important;
  border-right: 2px solid var(--lp-gold, #fbbf24) !important;
  border-bottom: 2px solid var(--lp-gold, #fbbf24) !important;
}


/* Home story image inside bordered card */
.home-story-image{
  display:block;
  width:100%;
  max-width:360px;
  height:auto;
  margin:12px auto 16px;
}

/* Nav buttons */
.site-nav{border-top:1px solid var(--line)}
.site-nav .wrap{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;padding:10px 0}
.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  color:rgba(0,0,0,.82);
  background:var(--white);
  border-top:2px solid var(--lp-blue, #1d4ed8);
  border-left:2px solid var(--lp-blue, #1d4ed8);
  border-right:2px solid var(--lp-gold, #fbbf24);
  border-bottom:2px solid var(--lp-gold, #fbbf24);
  transition:transform .06s ease, filter .12s ease, box-shadow .12s ease;
}
.site-nav a:hover{
  background: rgba(242,195,0,.18);
  filter:brightness(0.99);
  transform:translateY(-1px);
  box-shadow:0 2px 0 rgba(0,0,0,.04);
}
.site-nav a.active{
  background:rgba(29,78,216,.08);
  color:#000;
  box-shadow:0 2px 0 rgba(0,0,0,.05);
}
.site-nav a:focus-visible{outline:2px solid rgba(29,78,216,.35);outline-offset:2px}

/* Home story image inside card */
.home-story-card .home-story-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  margin:0 0 12px 0;
}


/* Site background turf */
body{
  background-image: url('../images/lions-turf.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* --- Compact sticky header (0.4.0) --- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header .header-inner{ padding: 7px 0; }
.site-header .brand-logo{ width: 28px; height: 28px; }
.site-header .brand-title{ font-size: 16px; line-height: 1.1; }
.site-header .brand-sub{ font-size: 11px; }
.site-header .season-label{ font-size: 10px; }
.site-header .season-value{ font-size: 14px; }
@media (max-width: 980px){
  .site-header .header-inner{ padding: 6px 0; }
  .site-header .brand-logo{ width: 26px; height: 26px; }
}


/* --- Scores page --- */
.lp-card{
  background:#fff;
  border-radius:14px;
  border:2px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.lp-card-pad{ padding:16px; }

.lp-subhead-row{
  display:grid;
  grid-template-columns: 3fr 2fr;
  gap:12px;
  margin-bottom:10px;
}
.lp-subhead{
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(0,0,0,.7);
  padding-bottom:6px;
  border-bottom:1px dashed rgba(0,0,0,.18);
}

.lp-scores-wrap{ overflow-x:auto; }
.lp-scores-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width: 520px;
}
.lp-scores-table th,
.lp-scores-table td{
  padding:10px 10px;
  border-bottom:1px solid rgba(0,0,0,.10);
  vertical-align:top;
}
.lp-scores-table thead th{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color: rgba(0,0,0,.65);
  background: rgba(0,0,0,.02);
  position:sticky;
  top:0;
}
.lp-scores-table .col-year{ width:84px; white-space:nowrap; }
.lp-scores-table .col-north,
.lp-scores-table .col-south{ width:90px; text-align:right; white-space:nowrap; }
.lp-scores-table td.team-north,
.lp-scores-table td.team-south{ font-weight:800; }
.win{ font-weight:1000; }
.lp-standings{
  margin-top:14px;
  border-top:1px solid rgba(0,0,0,.12);
  padding-top:12px;
}
.lp-standings-title{
  font-weight:1000;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:8px;
  color: rgba(0,0,0,.7);
}
.lp-standings-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
@media (max-width: 680px){
  .lp-subhead-row{ grid-template-columns:1fr; }
  .lp-standings-grid{ grid-template-columns:1fr; }
}

/* --- Previous results widget --- */
.results-list{ display:flex; flex-direction:column; gap:8px; margin-top:10px; }
.result-row{ display:flex; justify-content:space-between; gap:10px; align-items:baseline; }
.result-row .yr{ font-weight:900; min-width:78px; color: rgba(0,0,0,.75); }
.result-row .score{ font-size:13px; }
.widget .btn.btn-secondary{
  display:inline-block;
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:2px solid rgba(31,95,191,.45);
  background:#fff;
  color: var(--brand);
  font-weight:900;
  text-decoration:none;
}
.widget .btn.btn-secondary:hover{
  background: rgba(240,196,25,.18);
  border-color: rgba(240,196,25,.65);
}


/* Highlights: Scores table */
.lp-highlights-tabs{
  display:flex;
  gap:10px;
  margin: 4px 0 14px;
}
.lp-tab{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:2px solid rgba(31,95,191,.55);
  background:#fff;
  font-weight:700;
  text-decoration:none;
}
.lp-tab:hover{
  background: rgba(240,196,25,.18);
}
.lp-tab-active{
  box-shadow: inset 0 0 0 2px rgba(240,196,25,.35);
}
.lp-scores-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(31,95,191,.28);
}
.lp-scores-table thead th{
  text-align:left;
  padding:10px 12px;
  font-size: 14px;
}
.lp-scores-table thead .grp{
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  border-bottom:1px solid rgba(31,95,191,.18);
}
.lp-scores-table thead .grp-mvp{
  background: rgba(31,95,191,.10);
}
.lp-scores-table thead .grp-scores{
  background: rgba(240,196,25,.18);
}
.lp-scores-table tbody td{
  padding:9px 12px;
  border-top:1px solid rgba(0,0,0,.06);
  vertical-align:top;
}
.lp-scores-table tbody tr.lp-win-north td{
  background: rgba(31,95,191,.06);
}
.lp-scores-table tbody tr.lp-win-south td{
  background: rgba(240,196,25,.10);
}
.lp-scores-table tbody tr.lp-tie td{
  background: rgba(0,0,0,.03);
}
.lp-scores-table tbody tr.lp-nogame td{
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.75);
  font-style: italic;
}
.lp-scores-table td.yr{
  font-weight:800;
  white-space:nowrap;
}
.lp-scores-table td.n,
.lp-scores-table td.s{
  width:70px;
  text-align:right;
  font-weight:600;
  white-space:nowrap;
}
.lp-scores-table td.scores{
  font-weight:700;
}
.lp-standings{
  display:flex;
  gap:16px;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid rgba(31,95,191,.15);
}
.lp-standings .stand-item{
  flex: 1 1 auto;
}


/* Highlights tabs: hash-based panels (Scores default, Coaches when targeted) */
.lp-highlights-panel{ display:none; }
.lp-highlights-panel:first-of-type{ display:block; }
.lp-highlights-panel:target{ display:block; }

.lp-coaches-wrap{
  margin-top: 10px;
}
.lp-coaches-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(31,95,191,.28);
  background:#fff;
}
.lp-coaches-thanks{
  margin: 6px 0 0;
}

/* Highlights: Coaches tables */
.lp-coaches-table th{padding:6px 8px; font-size:13px}
.lp-coaches-table td{padding:6px 8px; font-size:13px}

.lp-coaches-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:10px}
.lp-table-scroll{max-width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch}
.lp-coaches-side{border-radius:16px; padding:10px; border:1px solid rgba(0,0,0,.08); background:rgba(255,255,255,.92)}
.lp-coaches-table{width:100%; table-layout:auto}
.lp-coaches-table th,.lp-coaches-table td{white-space:nowrap}
.lp-coaches-table th:nth-child(1),.lp-coaches-table td:nth-child(1){min-width:58px}
.lp-coaches-table th:nth-child(2),.lp-coaches-table td:nth-child(2){min-width:0}
.lp-coaches-table th:nth-child(3),.lp-coaches-table td:nth-child(3){min-width:0}

.lp-coaches-table.lp-north thead th{background:rgba(0,92,202,.12)}
.lp-coaches-table.lp-south thead th{background:rgba(255,210,0,.18)}

/* Highlights: Coaches tables — side borders */
.lp-coaches-table.lp-north{border:2px solid rgba(0,92,202,.70)}
.lp-coaches-table.lp-south{border:2px solid rgba(255,210,0,.90)}

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

/* About: Included High Schools */
.about-highschools .muted{ opacity:.85; }
.about-highschools .hs-sides{ display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:14px; }
.about-highschools .hs-side h3{ margin:0 0 10px; letter-spacing:.06em; }
.about-highschools .hs-cols{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.about-highschools .hs-list{ list-style:none; padding:0; margin:0; }
.about-highschools .hs-list li{ padding:2px 0; }
.about-highschools .hs-north .hs-list li{ color: var(--north); }
.about-highschools .hs-south .hs-list li{ color: var(--south); }
@media (max-width: 860px){
  .about-highschools .hs-sides{ grid-template-columns:1fr; }
}

/* About: Rules of the Game */
.about-rules .rules-list{ margin:0; padding-left:22px; }
.about-rules .rules-list li{ padding:4px 0; }
