/* ============================================================
   Teams Hub — production (depth-chart collectible flavor)
   Linked from index.html. Scoped under #teamsHub / .teams-hub
   so home .intro and other pages stay untouched.
   ============================================================ */

.teams-hub {
  --hub-text: #e8ecf2;
  --hub-muted: #7a8498;
  --hub-soft: #9aa3b2;
  --hub-gold: #ffa64d;
  --hub-gold-glow: rgba(255, 166, 77, 0.45);
  --hub-border: rgba(255, 255, 255, 0.08);
  --hub-radius: 18px;
  --hub-ease: cubic-bezier(.22, .9, .28, 1);
  /* Full main width (~1400) — first-ship proportions */
  display: none;
  padding-bottom: 48px;
}
.teams-hub.active { display: block; }

/* ----- Intro ----- */
.teams-hub .intro {
  text-align: center;
  margin-bottom: 28px;
  padding: 24px 22px 28px;
  border-radius: var(--hub-radius);
  border: 1px solid var(--hub-border);
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(255, 166, 77, 0.12), transparent 55%),
    linear-gradient(180deg, #141922 0%, #0c1018 100%);
  position: relative;
  overflow: hidden;
}
.teams-hub .intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -32deg,
    transparent 0 18px,
    rgba(255, 166, 77, 0.04) 18px 20px
  );
  pointer-events: none;
  opacity: 0.7;
}
.teams-hub .intro > * { position: relative; z-index: 1; }
.teams-hub .intro h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
  line-height: 1.05;
  text-transform: uppercase;
}
.teams-hub .intro h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffa64d, #ff4d4d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.teams-hub .intro > p {
  font-size: 15px;
  color: var(--hub-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ----- Toolbar: season pill + sort pill + search ----- */
.teams-hub .hub-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin: 22px auto 0;
  max-width: 920px;
}
.teams-hub .season-pill {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  gap: 2px;
}
.teams-hub .season-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--hub-soft);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms, color 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.teams-hub .season-btn:hover {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.05);
}
.teams-hub .season-btn.is-active {
  color: #1a1200;
  background: linear-gradient(180deg, #ffb965 0%, var(--hub-gold) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 166, 77, 0.35),
    0 4px 14px rgba(255, 166, 77, 0.35);
}
.teams-hub .season-btn:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 2px;
}

/* View / sort: same pill language as season */
.teams-hub .sort-pill {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}
.teams-hub .sort-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--hub-soft);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35px;
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms, color 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.teams-hub .sort-btn:hover {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.05);
}
.teams-hub .sort-btn.is-active {
  color: var(--hub-text);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.teams-hub .sort-btn.is-active[data-sort="standings"]:not([data-no-records]) {
  color: #1a1200;
  background: linear-gradient(180deg, #ffb965 0%, var(--hub-gold) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 166, 77, 0.35),
    0 4px 14px rgba(255, 166, 77, 0.28);
}
.teams-hub .sort-btn[data-no-records].is-active {
  color: var(--hub-soft);
  background: rgba(255, 255, 255, 0.07);
}
.teams-hub .sort-btn:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 2px;
}

.teams-hub .hub-search {
  position: relative;
  flex: 1 1 240px;
  max-width: 360px;
  display: flex;
  align-items: center;
  min-width: 200px;
}
.teams-hub .hub-search-icon {
  position: absolute;
  left: 14px;
  font-size: 15px;
  color: var(--hub-muted);
  pointer-events: none;
  line-height: 1;
}
.teams-hub .hub-search input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--hub-text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 40px 11px 38px;
  border-radius: 999px;
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
}
.teams-hub .hub-search input::placeholder {
  color: var(--hub-muted);
  font-weight: 500;
}
.teams-hub .hub-search input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.teams-hub .hub-search input:focus {
  border-color: rgba(255, 166, 77, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 166, 77, 0.18);
}
.teams-hub .hub-search-clear {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--hub-soft);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.teams-hub .hub-search-clear:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--hub-text);
}
.teams-hub .hub-search-clear:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 2px;
}

.teams-hub .hub-season-note {
  margin-top: 14px !important;
  font-size: 12px !important;
  color: var(--hub-muted) !important;
  letter-spacing: 0.3px;
  max-width: none;
}
.teams-hub .hub-season-note strong {
  color: var(--hub-gold);
  font-weight: 800;
}
.teams-hub .hub-sort-note {
  margin: 8px auto 0 !important;
  font-size: 11px !important;
  color: var(--hub-muted) !important;
  letter-spacing: 0.25px;
  max-width: 520px;
  opacity: 0.9;
}
.teams-hub .hub-sort-note[hidden] { display: none !important; }

/* ----- Link strip ----- */
.teams-hub .hub-link-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.teams-hub .hub-link-strip a {
  color: var(--hub-soft);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 160ms, border-color 160ms, background 160ms;
  cursor: pointer;
}
.teams-hub .hub-link-strip a:hover {
  color: var(--hub-gold);
  background: rgba(255, 166, 77, 0.1);
  border-color: rgba(255, 166, 77, 0.35);
}
.teams-hub .hub-link-strip a:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 2px;
}
.teams-hub .hub-link-dot {
  color: var(--hub-muted);
  opacity: 0.7;
  user-select: none;
  padding: 0 2px;
}

/* ----- Recently viewed ----- */
.teams-hub .hub-recent {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--hub-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(20, 25, 34, 0.9) 0%, rgba(12, 16, 24, 0.95) 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.teams-hub .hub-recent[hidden] { display: none; }
.teams-hub .hub-recent-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--hub-gold);
  margin-bottom: 10px;
}
.teams-hub .hub-recent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.teams-hub .hub-recent-chip {
  --team: #666;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--hub-text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--team) 22%, transparent);
  transition: border-color 160ms, background 160ms, transform 160ms;
  cursor: pointer;
  font: inherit;
}
.teams-hub .hub-recent-chip:hover {
  border-color: rgba(255, 166, 77, 0.55);
  background: rgba(255, 166, 77, 0.1);
  transform: translateY(-1px);
}
.teams-hub .hub-recent-chip:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 2px;
}
.teams-hub .hub-recent-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.teams-hub .hub-recent-logo img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.teams-hub .hub-recent-logo .fb {
  font-size: 8px;
  font-weight: 900;
  color: #111;
}
.teams-hub .hub-recent-abbr {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hub-soft);
}
.teams-hub .hub-recent-chip:hover .hub-recent-abbr { color: var(--hub-gold); }

/* ----- Section heads ----- */
.teams-hub .hub-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 18px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--hub-text);
}
.teams-hub .hub-section-head .hub-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hub-gold);
}
.teams-hub .hub-section-head .hub-hint span { opacity: 0.7; }

/* ----- Conference / division layout ----- */
.teams-hub .conf-mount {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.teams-hub .conf-block {
  position: relative;
  border-radius: var(--hub-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #141922 0%, #0c1018 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  padding: 20px 20px 22px;
  overflow: hidden;
}
.teams-hub .conf-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -32deg,
    transparent 0 18px,
    rgba(255, 166, 77, 0.03) 18px 20px
  );
  pointer-events: none;
  opacity: 0.75;
}
.teams-hub .conf-block > * { position: relative; z-index: 1; }

.teams-hub .conf-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 166, 77, 0.28);
  flex-wrap: wrap;
}
.teams-hub .conf-block-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hub-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.teams-hub .conf-block-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--hub-gold);
  box-shadow: 0 0 10px var(--hub-gold-glow);
  flex-shrink: 0;
}
.teams-hub .conf-block-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1a1200;
  background: var(--hub-gold);
  padding: 4px 10px;
  border-radius: 6px;
}

.teams-hub .div-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.teams-hub .div-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.teams-hub .div-block-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hub-gold);
}
.teams-hub .div-block-count {
  font-size: 10px;
  font-weight: 800;
  color: var(--hub-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 999px;
  min-width: 22px;
  text-align: center;
}

/* ----- Team cards ----- */
.teams-hub .tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 0;
  padding: 0;
}
.teams-hub .tgrid--div {
  /* natural auto-fill — same min card width as first-ship hub */
}
.teams-hub .tgrid--flat {
  margin-top: 2px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.teams-hub .tcard {
  --team: var(--tcardBorder, #666);
  position: relative;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--team) 42%, #1a2030) 0%,
      color-mix(in srgb, var(--team) 72%, #0a0d14) 48%,
      #0a0d14 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hub-radius);
  border-top: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 220ms var(--hub-ease),
    border-color 220ms,
    box-shadow 220ms;
  padding: 20px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  font: inherit;
  width: 100%;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--team) 25%, transparent),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.teams-hub .tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--team), transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--team) 55%, transparent);
  pointer-events: none;
}
.teams-hub .tcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, color-mix(in srgb, var(--team) 28%, transparent), transparent 62%);
  pointer-events: none;
  opacity: 0.9;
}

.teams-hub .tcard:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
  border-color: rgba(255, 166, 77, 0.75);
  box-shadow:
    0 0 0 1px rgba(255, 166, 77, 0.35),
    0 0 28px var(--hub-gold-glow),
    0 18px 36px rgba(0, 0, 0, 0.55);
}
.teams-hub .tcard:focus-visible {
  outline: 2px solid rgba(255, 166, 77, 0.9);
  outline-offset: 3px;
}
.teams-hub .tcard:hover .tlogo-lg {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--team) 40%, transparent),
    0 0 36px color-mix(in srgb, var(--team) 50%, transparent),
    0 6px 16px rgba(0, 0, 0, 0.4);
}
.teams-hub .tcard:hover .tlogo-lg img {
  transform: scale(1.05);
}
.teams-hub .tcard:hover .tcard-cta {
  opacity: 1;
  background: rgba(255, 166, 77, 0.16);
  border-color: rgba(255, 166, 77, 0.55);
  box-shadow: 0 0 16px rgba(255, 166, 77, 0.2);
}

.teams-hub .tcard .tlogo-lg {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, color-mix(in srgb, var(--team) 38%, transparent), transparent 62%),
    #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--team) 42%, transparent),
    0 4px 14px rgba(0, 0, 0, 0.35);
  transition: border-color 220ms, box-shadow 220ms;
}
.teams-hub .tcard .tlogo-lg img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms var(--hub-ease);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.teams-hub .tcard .tlogo-lg img[src*="HOU-3"] {
  width: 90%;
  height: 90%;
  object-position: center 52%;
}
.teams-hub .tcard .tlogo-lg .fb {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  letter-spacing: 0.5px;
}

.teams-hub .tcard .tcard-meta {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 2px;
  padding-top: 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 14, 0.45) 40%, rgba(8, 10, 14, 0.72) 100%);
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: -16px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
  border-radius: 0 0 calc(var(--hub-radius) - 1px) calc(var(--hub-radius) - 1px);
}
.teams-hub .tcard .tname {
  font-size: 13px;
  font-weight: 800;
  color: var(--hub-text);
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.teams-hub .tcard .tcard-rec {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--hub-gold);
  opacity: 0.95;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.teams-hub .tcard .tabbr-sub {
  margin-top: 5px;
  font-size: 10px;
  color: var(--hub-muted);
  letter-spacing: 1.4px;
  font-weight: 800;
  text-transform: uppercase;
}
.teams-hub .tcard .tcard-rec + .tabbr-sub {
  margin-top: 4px;
}

.teams-hub .tcard .tcard-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--hub-gold);
  opacity: 0.92;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 166, 77, 0.35);
  background: rgba(255, 166, 77, 0.08);
  transition: opacity 180ms, background 180ms, border-color 180ms, box-shadow 180ms;
}
.teams-hub .tcard .tcard-cta-arrow {
  font-size: 12px;
  line-height: 1;
  transition: transform 180ms var(--hub-ease);
}
.teams-hub .tcard:hover .tcard-cta-arrow {
  transform: translateX(3px);
}

.teams-hub .tcard .tcard-season-chip {
  display: block;
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hub-muted);
  opacity: 0.85;
}

.teams-hub .hub-empty {
  margin-top: 24px;
  text-align: center;
  padding: 28px 20px;
  border: 1px dashed rgba(255, 166, 77, 0.3);
  border-radius: var(--hub-radius);
  color: var(--hub-soft);
  font-size: 14px;
  background: rgba(18, 23, 34, 0.45);
}
.teams-hub .hub-empty[hidden] { display: none; }

@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .teams-hub .tcard {
    background: linear-gradient(180deg, #151b27 0%, #0c1018 100%);
    border-top: 3px solid var(--team, #666);
  }
}

/* ----- Tablet / mobile ----- */
@media (max-width: 720px) {
  .teams-hub .intro {
    padding: 20px 16px 24px;
    margin-bottom: 28px;
  }
  .teams-hub .intro h1 { font-size: 26px; letter-spacing: -0.6px; }
  .teams-hub .intro > p { font-size: 14px; }
  .teams-hub .hub-toolbar { flex-direction: column; align-items: stretch; }
  .teams-hub .hub-search { max-width: none; }
  .teams-hub .season-pill { justify-content: center; }
  .teams-hub .season-btn { flex: 1; }
  .teams-hub .sort-pill { justify-content: center; width: 100%; }
  .teams-hub .sort-btn { flex: 1; padding: 9px 8px; font-size: 10px; }
  .teams-hub .tgrid,
  .teams-hub .tgrid--div,
  .teams-hub .tgrid--flat {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .teams-hub .tcard {
    padding: 16px 12px 14px;
    gap: 10px;
  }
  .teams-hub .tcard .tlogo-lg { width: 68px; height: 68px; }
  .teams-hub .tcard .tcard-meta {
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: -14px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
  }
  .teams-hub .conf-block { padding: 16px 14px 18px; }
  .teams-hub .hub-section-head { font-size: 12px; letter-spacing: 1.2px; }
}

@media (max-width: 480px) {
  .teams-hub .tgrid,
  .teams-hub .tgrid--div,
  .teams-hub .tgrid--flat { grid-template-columns: 1fr 1fr; gap: 10px; }
  .teams-hub .tcard .tlogo-lg { width: 56px; height: 56px; }
  .teams-hub .tcard .tname { font-size: 12px; }
  .teams-hub .tcard .tcard-cta { padding: 7px 8px; font-size: 9px; }
  .teams-hub .tcard:hover { transform: translateY(-4px) scale(1.01); }
  .teams-hub .conf-block-title { font-size: 13px; letter-spacing: 1.2px; }
}
