/* Ranking hubs — body.hub (forest chrome + lboard + TOC + section cards) */
body.hub {
  /* Match homepage --hm-wrap so ranking tables use the same content width */
  --hub-wrap: min(100% - 2rem, 1240px);
  --wrap: var(--hub-wrap);
  background: var(--soft);
  padding-bottom: 0;
}

body.hub .ribbon,
body.hub .trail {
  display: none !important;
}

body.hub .wrap {
  width: var(--hub-wrap);
  margin-inline: auto;
}

/* Doc layout: main left, TOC card right (overlaps hero bottom) */
body.hub .doc {
  width: var(--hub-wrap);
  margin: -4.25rem auto 3rem;
  display: grid !important;
  gap: 1.25rem;
  align-items: start;
  position: relative;
  z-index: 5;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 0;
}

@media (min-width: 980px) {
  body.hub .doc {
    /* Sidebar width aligned with homepage .hm-layout (260px) */
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 1.75rem;
    margin-top: -4.75rem;
  }

  /* DOM order is toc then main — pin columns explicitly */
  body.hub .doc > .doc__main {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  body.hub .doc > .toc {
    grid-column: 2;
    grid-row: 1;
  }
}

body.hub .doc__main {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

body.hub .doc__main > .wrap,
body.hub .doc__main .slice .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.hub .slice {
  margin: 0;
  padding: 0;
}

/* Hide in-doc H1 block after forest hero — keep byline/lede as intro card */
body.hub .doc__main > .slice#overview,
body.hub .doc__main > section#overview,
body.hub .doc__main > .slice#rankings {
  background: var(--white);
  border: 1px solid rgba(221, 230, 225, 0.9);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 32px rgba(12, 33, 25, 0.08);
}

body.hub .doc__main > .slice#rankings .hub-card__head {
  margin-bottom: 0.95rem;
}

body.hub .doc__main #overview .kicker,
body.hub .doc__main #overview .h-display,
body.hub .doc__main #overview h1 {
  display: none;
}

body.hub .review-byline {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0 0 0.85rem;
  padding: 0 0 0.85rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

body.hub .review-byline__avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  line-height: 0;
}

body.hub .review-byline__avatar .lightbox-trigger {
  display: block;
  width: 100%;
  height: 100%;
}

body.hub .review-byline__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

body.hub .review-byline__updated {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

body.hub .review-byline__name {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

body.hub .review-byline__bio {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

body.hub .lede,
body.hub .lead {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  color: var(--ink);
}

body.hub .lede:last-child,
body.hub .lead:last-child {
  margin-bottom: 0;
}

body.hub .pull {
  margin: 0.85rem 0 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--lime);
  background: var(--soft);
  border-radius: 0 10px 10px 0;
  font-size: 0.92rem;
  color: var(--forest);
  font-weight: 600;
}

/* TOC sticky white card — override style.css legacy TOC */
body.hub .toc {
  display: block !important;
  background: var(--white);
  border: 1px solid rgba(221, 230, 225, 0.95) !important;
  border-right: 1px solid rgba(221, 230, 225, 0.95) !important;
  border-radius: 16px;
  padding: 1.05rem 1.1rem 1.15rem !important;
  box-shadow: 0 14px 36px rgba(12, 33, 25, 0.12);
  position: relative;
  top: auto;
  max-height: none;
  overflow: visible;
  align-self: start;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

@media (min-width: 980px) {
  body.hub .toc {
    position: sticky;
    top: 5rem;
  }
}

@media (max-width: 979px) {
  body.hub .doc > .toc {
    order: -1;
  }
}

body.hub .toc__title {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
}

body.hub .toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
  counter-reset: hubtoc;
}

body.hub .toc li {
  counter-increment: hubtoc;
}

body.hub .toc a {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 0.15rem 0;
}

body.hub .toc a::before {
  content: counter(hubtoc);
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
}

body.hub .toc a:hover {
  color: var(--forest);
}

body.hub .toc--mobile {
  display: none;
}

/* Section cards */
body.hub .hub-card,
body.hub .legacy-wp-import .siteSection,
body.hub .doc__main > .wrap.legacy-wp-import > .siteSection,
body.hub article.hub-card {
  background: var(--white);
  border: 1px solid rgba(221, 230, 225, 0.95);
  border-radius: 16px;
  padding: 1.25rem 1.35rem 1.35rem;
  box-shadow: 0 10px 28px rgba(12, 33, 25, 0.06);
  scroll-margin-top: 5.5rem;
  margin: 0 0 1rem;
}

/* Avoid double chrome when siteSection wraps a hub-card */
body.hub .legacy-wp-import .siteSection:has(> .hub-card) {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

body.hub .legacy-wp-import {
  display: grid;
  gap: 1rem;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.hub .hub-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

body.hub .hub-card__num {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

body.hub .hub-card__icon {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--forest);
  display: grid;
  place-items: center;
}

body.hub .hub-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

body.hub .hub-card h2,
body.hub .siteSection > h2,
body.hub .legacy-wp-import h2 {
  margin: 0 0 0.85rem;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-family: var(--font);
}

body.hub .hub-card__head h2 {
  margin: 0;
  flex: 1;
}

body.hub .section-blurb {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

body.hub .doc__main p {
  color: var(--ink);
}

body.hub .doc__main a {
  color: #1a6b45;
}

/* Lboard → lime ranking table */
body.hub .lboard-shell {
  display: none;
  overflow-x: visible;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: none;
}

@media (min-width: 901px) {
  body.hub .lboard-shell {
    display: block;
  }
}

body.hub .lboard {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--white);
  font-family: var(--font);
}

body.hub .lboard th,
body.hub .lboard td {
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid var(--line);
  height: auto;
}

body.hub .lboard thead th {
  background: #f6f8f7;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7a73;
  font-weight: 700;
  font-family: var(--font);
}

body.hub .lboard tbody tr:nth-child(even) td,
body.hub .lboard tbody tr:nth-child(even) th {
  background: transparent;
}

body.hub .lboard tbody tr:hover td,
body.hub .lboard tbody tr:hover th {
  background: #f3f9f0;
}

body.hub .lboard tbody tr.hm-brief-row:hover td,
body.hub .lboard tbody tr.hm-brief-row:hover th {
  background: #fff !important;
}

body.hub .lboard tbody tr:last-child td,
body.hub .lboard tbody tr:last-child th {
  border-bottom: none;
}

/* Column widths must be on thead (table-layout:fixed) — match homepage hm-table */
body.hub .lboard th:nth-child(1),
body.hub .lboard td:nth-child(1),
body.hub .lboard .rank {
  width: 44px;
  min-width: 44px;
  max-width: 48px;
  text-align: center;
}

body.hub .lboard .rank {
  font-family: var(--font);
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
}

body.hub .lboard th:nth-child(2),
body.hub .lboard td:nth-child(2) {
  width: 200px;
  min-width: 0;
  overflow: hidden;
}

body.hub .lboard th:nth-child(3),
body.hub .lboard td:nth-child(3),
body.hub .lboard .offer {
  width: auto;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

body.hub .lboard th:nth-child(4),
body.hub .lboard td:nth-child(4),
body.hub .lboard .score-cell {
  width: 100px;
  min-width: 100px;
}

body.hub .lboard th:nth-child(5),
body.hub .lboard td:nth-child(5),
body.hub .lboard .cta {
  width: 118px;
  min-width: 118px;
}

body.hub .op {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  max-width: 100%;
}

body.hub .op img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 3px;
}

body.hub .op__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  min-width: 0;
  max-width: 100%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25;
  overflow-wrap: break-word;
}

body.hub .op__name .pill {
  display: inline-flex;
  max-width: 100%;
  white-space: normal;
}

body.hub .pill {
  background: rgba(200, 241, 53, 0.32);
  color: #2f5a14;
  border: none;
  border-radius: 999px;
  font-size: 0.62rem;
}

body.hub .lboard .offer {
  color: var(--ink);
  font-weight: 600;
  max-width: none;
}

body.hub .lboard .tags,
body.hub .note-line {
  color: #7a8a82;
  font-weight: 500;
}

body.hub .score-num {
  color: var(--ink);
  font-size: 1.1rem;
}

body.hub .stars {
  color: #a8b020;
}

body.hub .lboard .cta {
  /* keep table-cell — display:flex on <td> breaks row borders/alignment */
  display: table-cell;
  vertical-align: middle;
  white-space: normal;
}

body.hub .lboard .cta .btn,
body.hub .lboard-cards .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  margin: 0.15rem 0;
  border: 1px solid transparent;
  box-shadow: none;
  vertical-align: middle;
}

body.hub .lboard .cta .btn--solid,
body.hub .lboard-cards .btn--solid,
body.hub .btn-play {
  background: var(--lime);
  color: var(--forest-deep);
}

body.hub .lboard .cta .btn--solid:hover,
body.hub .lboard-cards .btn--solid:hover,
body.hub .btn-play:hover {
  background: #d4f74a;
  color: var(--forest-deep);
}

body.hub .lboard .cta .btn--ghost,
body.hub .lboard-cards .btn--ghost {
  background: transparent;
  border-color: transparent;
  color: #5f6f67;
  font-weight: 600;
  min-width: 0;
  padding: 0.2rem 0;
}

body.hub .lboard .cta .btn--ghost:hover,
body.hub .lboard-cards .btn--ghost:hover {
  color: var(--ink);
  background: transparent;
}

body.hub .lboard-cards {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 901px) {
  body.hub .lboard-cards {
    display: none;
  }
}

body.hub .lboard-cards .card,
body.hub .lboard-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: var(--white);
}

/* FAQ accordion cards */
body.hub .faq details,
body.hub .faq-item,
body.hub details.faq-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
}

body.hub .faq summary,
body.hub details.faq-card summary {
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
}

/* WP tables inside content (exclude ranking hm-table) */
body.hub .wp-block-table,
body.hub .doc__main table:not(.lboard):not(.hm-table) {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border-collapse: collapse;
}

body.hub .doc__main table:not(.lboard):not(.hm-table) th,
body.hub .doc__main table:not(.lboard):not(.hm-table) td {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  vertical-align: middle;
}

body.hub .doc__main table:not(.lboard):not(.hm-table) thead th {
  background: #f6f8f7;
  font-family: var(--font);
  color: #6b7a73;
}

body.hub .doc__main table:not(.lboard):not(.hm-table) tbody tr:nth-child(even) td,
body.hub .doc__main table:not(.lboard):not(.hm-table) tbody tr:nth-child(even) th {
  background: #fafcfb;
  color: var(--ink);
}

/* Label column tables (benefits / comparison) — keep text readable on stripes */
body.hub .doc__main table.benefits-table td:first-child,
body.hub .legacy-wp-import table.benefits-table td:first-child {
  background: var(--soft) !important;
  color: var(--forest) !important;
  font-weight: 700;
  width: 30%;
}

body.hub .doc__main table.benefits-table tr:nth-child(even) td:first-child,
body.hub .legacy-wp-import table.benefits-table tr:nth-child(even) td:first-child {
  background: #e8f0eb !important;
  color: var(--forest) !important;
}

body.hub .doc__main table.benefits-table td:not(:first-child),
body.hub .legacy-wp-import table.benefits-table td:not(:first-child) {
  color: var(--ink) !important;
}

body.hub .doc__main table.casino-table thead th,
body.hub .legacy-wp-import table.casino-table thead th {
  background: var(--forest) !important;
  color: #fff !important;
}

/* Compact endcap copy if simple footer used */
body.hub .endcap__copy {
  margin-top: 0.75rem;
}

/* ===== Homepage ranking table 1:1 (hm-table) ===== */
body.hub {
  --hm-line: var(--line);
  --hm-muted: var(--muted);
  --hm-ink: var(--ink);
  --hm-lime: var(--lime);
  --hm-green: var(--forest);
  --hm-green-deep: var(--forest-deep);
  --hm-soft: var(--soft);
}

body.hub .hm-table-wrap {
  display: none;
  overflow-x: auto;
  border: 1px solid var(--hm-line);
  border-radius: 12px;
  background: #fff;
}

@media (min-width: 901px) {
  body.hub .hm-table-wrap {
    display: block;
  }
}

body.hub .hm-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 0;
}

body.hub .hm-table col.col-rank { width: 40px; }
body.hub .hm-table col.col-casino { width: 180px; }
body.hub .hm-table col.col-offer { width: auto; }
body.hub .hm-table col.col-score { width: 80px; }
body.hub .hm-table col.col-review { width: 88px; }
body.hub .hm-table col.col-play { width: 112px; }

body.hub .hm-table th,
body.hub .hm-table td {
  padding: 0.7rem 0.7rem;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px solid #e6eee9;
  font-size: 0.9rem;
  line-height: 1.35;
  min-height: 72px;
  background: #fff;
  border-left: none;
  border-right: none;
  border-top: none;
  color: var(--hm-ink);
  box-sizing: border-box;
}

body.hub .hm-table td:last-child {
  padding-left: 0.45rem;
  padding-right: 0.55rem;
}

body.hub .hm-table thead th {
  background: #f7faf8;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hm-muted);
  font-weight: 700;
  height: auto;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--hm-line);
}

body.hub .hm-table tbody tr.hm-row td {
  background: #fff;
  border-bottom: none;
}

body.hub .hm-table tbody tr.hm-row:hover td {
  background: #fbfdf9;
}

body.hub .hm-table tbody tr.hm-brief-row td {
  padding: 0;
  min-height: 0;
  height: auto;
  vertical-align: top;
  background: #fff !important;
  border-bottom: 1px solid var(--hm-line);
}

body.hub .hm-table .rank {
  font-weight: 800;
  text-align: center;
  color: var(--hm-ink);
}

body.hub .hm-op {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

body.hub .hm-op img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--hm-line);
  background: #fff;
  padding: 3px;
  display: block;
}

body.hub .hm-op__meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

body.hub .hm-op__name {
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.hub .hm-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: rgba(179, 245, 65, 0.28);
  color: #2f5a14;
  font-size: 0.62rem;
  font-weight: 700;
}

body.hub .hm-offer {
  font-weight: 700;
  color: var(--hm-ink);
  font-size: 0.88rem;
}

body.hub .hm-offer small {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  color: var(--hm-muted);
  font-size: 0.76rem;
}

body.hub .hm-score {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hm-ink);
}

body.hub .hm-review {
  color: var(--hm-ink);
  font-weight: 800;
  font-size: 0.84rem;
  text-decoration: none;
  white-space: nowrap;
}

body.hub .hm-review:hover {
  color: var(--hm-green);
}

body.hub .btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: var(--hm-lime);
  color: var(--hm-green-deep);
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
}

body.hub .btn-play:hover {
  background: #c4ff5a;
  color: var(--hm-green-deep);
}

/* Sportsbook review cards (crypto-sports-betting) */
body.hub .sport-ops {
  display: grid;
  gap: 1.15rem;
  margin: 0.35rem 0 0.25rem;
}

body.hub .sport-op {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(12, 33, 25, 0.05);
}

@media (min-width: 820px) {
  body.hub .sport-op {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    grid-template-areas:
      "head shot"
      "coins shot"
      "blurb shot"
      "actions shot";
    column-gap: 1.15rem;
    align-items: start;
  }

  body.hub .sport-op__head { grid-area: head; }
  body.hub .sport-op__shot { grid-area: shot; margin: 0; }
  body.hub .sport-op .hm-coins { grid-area: coins; }
  body.hub .sport-op__blurb { grid-area: blurb; }
  body.hub .sport-op__actions { grid-area: actions; }
}

body.hub .sport-op__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

body.hub .sport-op__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 4px;
  flex: 0 0 auto;
}

body.hub .sport-op__rank {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest);
}

body.hub .sport-op__name {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

body.hub .sport-op__bonus {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

body.hub .sport-op__shot {
  margin: 0;
}

body.hub .sport-op__shot a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1210;
}

body.hub .sport-op__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

body.hub .sport-op__shot figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

body.hub .sport-op .hm-coins {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

body.hub .sport-op .hm-coin {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  overflow: hidden;
}

body.hub .sport-op .hm-coin__link,
body.hub .sport-op .hm-coin:not(:has(.hm-coin__link)) {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.22rem 0.45rem 0.22rem 0.28rem;
  color: inherit;
  text-decoration: none;
}

body.hub .sport-op .hm-coin__link:hover {
  background: var(--soft);
  color: var(--forest);
}

body.hub .sport-op .hm-coin__img {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  object-fit: contain;
  display: block;
}

body.hub .sport-op__blurb {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.hub .sport-op__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.hub .sport-op__actions .btn {
  min-width: 7rem;
  justify-content: center;
}

@media (max-width: 700px) {
  body.hub .forest-hero {
    padding: 2rem 0 3.5rem;
    min-height: 16rem;
  }

  body.hub .doc {
    margin-top: -2.5rem;
  }
}
