/* ================================
   COMPONENT — HERO BLOCK
================================ */

.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  background: #000;
  color: #fff;
  margin-bottom: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero h1 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  position: relative;
  font-size: 18px;
  opacity: 0.9;
}

/* ================================
   COMPONENT — MODALS
================================ */

.modal-content {
  position: relative;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  max-width: 960px;
  width: 92%;
  margin: 40px auto;
}

.hidden {
  display: none !important;
}


/* ================================
   COMPONENT — TABS (MODERN)
================================ */

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 18px;
  background: #eee;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tab-btn.active {
  background: #b30000;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* ================================
   COMPONENT — BADGES
================================ */

.fx-opponent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fx-badge {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ================================
   COMPONENT — TABLES (Fixtures)
================================ */

.fixtures-table,
.reserves-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-bottom: 40px;
}

.fixtures-table tr:nth-child(even),
.reserves-table tr:nth-child(even) {
  background: #fafafa;
}

.fixtures-table tr:nth-child(odd),
.reserves-table tr:nth-child(odd) {
  background: #ffffff;
}

.fixtures-table tr,
.reserves-table tr {
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s ease, transform 0.15s ease;
}

.fixtures-table tr:hover,
.reserves-table tr:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.fixtures-table td,
.reserves-table td {
  padding: 12px 14px;
  vertical-align: middle;
  font-size: 15px;
}

.fixtures-table tr:first-child td,
.reserves-table tr:first-child td {
  background: none;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 2px solid #ddd;
}

/* ================================
   COMPONENT — CARDS (News)
================================ */

.news-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  padding: 16px;
  margin-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.1);
}

/* ================================
   COMPONENT — PLAYER CARDS (Teams)
================================ */

.squad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
  padding: 10px 0;
}

.player-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: #000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.player-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.1);
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.player-position {
  background: #b30000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.player-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
  font-size: 0.9rem;
}

.player-stats div strong {
  color: #b30000;
}
.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: #eee;
  border-radius: 6px;
  font-weight: 600;
  color: #333;
}

.back-btn:hover {
  background: #ddd;
}



/* ================================
   COMPONENT — MOBILE FIXTURES
================================ */

@media (max-width: 600px) {

  .fixtures-table tr,
  .reserves-table tr {
    display: block;
    margin-bottom: 16px;
    padding: 14px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }

  .fixtures-table td,
  .reserves-table td {
    display: block;
    padding: 5px 0;
    text-align: left !important;
  }

  .fixtures-table tr:first-child,
  .reserves-table tr:first-child {
    display: none;
  }
}

/* ================================
   MOBILE — SPONSOR BELT FIX
================================ */

@media (max-width: 600px) {
  #partner-belt::before,
  #partner-belt::after {
    width: 60px;   /* smaller fade so logos stay visible */
  }
}



/* ================================
   COMPONENT — MOBILE PLAYER CARDS
================================ */

@media (max-width: 600px) {

  .squad-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 30px;
  }

  .player-card {
    padding: 16px;
    border-radius: 12px;
  }

  .player-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .player-name {
    font-size: 1.1rem;
  }

  .player-position {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .player-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
    font-size: 0.85rem;
  }
}

/* ================================
   SPONSOR BELT — ELECTRONIC PITCHSIDE LED BOARD
================================ */

#partner-belt {
  width: 100%;
  height: 130px;
  background: #050505;
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
  box-shadow: inset 0 0 24px rgba(0,0,0,0.9);
  margin-top: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Faint LED pixel-grid texture across the board, like individual diodes */
#partner-belt::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    rgba(255,255,255,0.035) 0px,
    rgba(255,255,255,0.035) 1px,
    transparent 1px,
    transparent 4px
  );
  z-index: 5;
  pointer-events: none;
}

/* Wobble wrapper - kept as the JS animation hook, but flattened: a
   real LED board doesn't wobble or tilt in 3D */
#wobble-wrapper {
  width: max-content;
}

/* Inner belt (JS moves this) */
.belt-inner {
  display: flex;
  width: max-content;
}

/* Tracks */
.belt-track {
  display: flex;
  flex-shrink: 0;
}

/* Wraps clickable sponsor logos - matches the flex behaviour a bare
   .partner-logo <img> would have had, so linking a logo to its website
   doesn't disturb the belt's spacing/animation. */
.belt-track a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.belt-track a .partner-logo {
  margin-right: 0;
}

.belt-track a {
  margin-right: 50px;
}

@media (max-width: 600px) {
  .belt-track a {
    margin-right: 30px;
  }
}

/* Logos - lit up like illuminated LED panels: flat (no 3D tilt),
   bright white glow, high contrast against the black board */
.partner-logo {
  height: 76px;
  margin-right: 50px;
  flex-shrink: 0;
  object-fit: contain;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.55))
          drop-shadow(0 0 14px rgba(255,255,255,0.25))
          brightness(1.15)
          contrast(1.15);

  transition: filter 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.8))
          drop-shadow(0 0 20px rgba(255,255,255,0.4))
          brightness(1.25)
          contrast(1.2);
}

/* Fade masks - fading to the board's own black rather than a grey card */
#partner-belt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}

#curve-shading,
#glass-sheen {
  display: none;
}

/* Proportional mobile sizing — placed after the base rules above
   so it actually wins the cascade (a later same-specificity rule
   beats an earlier one regardless of media query). */
@media (max-width: 600px) {
  #partner-belt {
    height: 80px;
  }

  .partner-logo {
    height: 44px;
    margin-right: 30px;
  }

}
/* Ensure programme viewer always appears above everything */
#programme-viewer {
  position: fixed !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99999 !important;
}

#programme-viewer .modal-content {
  position: relative;
  z-index: 100000 !important;
}

/* Kill the unwanted ? icon from programme viewer */
#programme-viewer::before,
#programme-viewer .modal-content::before,
#programme-viewer .close-modal::before,
#programme-viewer .close-archive::before {
    content: none !important;
}

/* ================================
   COMPONENT — LATEST RESULTS (First Team + Reserves)
================================ */

/* ================================
   RESULTS BELT — continuous scrolling loop
   (same mechanism as the partner belt)
================================ */

#results-belt {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  background: #f5f5f5;
  position: relative;
}

#resultsBeltInner {
  display: flex;
  width: max-content;
}

.results-track {
  display: flex;
  flex-shrink: 0;
}

.result-card {
  flex-shrink: 0;
  width: 460px;
  margin-right: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  padding: 20px 24px;
  position: relative;
  border-left: 4px solid #b30000;
  text-align: center;
}

.result-card-clickable {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.result-card-clickable:hover,
.result-card-clickable:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.1);
  outline: none;
}

.result-card-clickable::after {
  content: "View report \2192";
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #b30000;
}

@media (max-width: 600px) {
  .result-card {
    width: 320px;
  }
}

.result-squad-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #b30000;
  margin-bottom: 6px;
}

.result-line {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.result-score {
  color: #b30000;
  font-weight: 800;
}

.result-meta {
  font-size: 13px;
  color: #666;
}

/* ================================
   HOMEPAGE MEDIA CAROUSEL
   (images / YouTube video / match reports / albums)
================================ */

#media-carousel {
  width: 100%;
  position: relative;
  padding: 16px 0;
}

#mediaCarouselInner {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#mediaCarouselInner::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow-left { left: 4px; }
.carousel-arrow-right { right: 4px; }

/* Arrows are a desktop/pointer-device pattern; phones use native swipe */
@media (max-width: 600px) {
  .carousel-arrow {
    display: none;
  }
}

.media-card {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  margin-right: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2), 0 3px 8px rgba(0,0,0,0.1);
}

.card-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  margin-left: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.media-thumb-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Used when there's no real photo yet and we're showing the club
   badge as a placeholder - contain (not cover) so it's never cropped,
   on a branded background instead of a plain/harsh one. */
.media-thumb-wrap.fallback-thumb {
  background: linear-gradient(135deg, #b30000, #7a0000);
}

.media-thumb-wrap.fallback-thumb .media-thumb {
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 32px;
  text-shadow: 0 0 8px rgba(0,0,0,0.7);
  pointer-events: none;
}

.album-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 18px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-credit-banner {
  background: #fff;
  color: #444;
  font-size: 11px;
  padding: 4px 8px;
  border-top: 1px solid #eee;
}

.media-info {
  padding: 10px 12px 14px;
}

.media-info h3 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #b30000;
  font-weight: 700;
  line-height: 1.3;
}

.media-date {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* ================================
   ARCHIVE SEARCH
================================ */

#archive-search {
  width: 100%;
  padding: 8px 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 60vh;
  overflow-y: auto;
}

#archive-list li {
  padding: 10px 4px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

#archive-list a {
  color: #b30000;
  text-decoration: none;
  font-weight: 600;
}

.archive-date {
  color: #888;
  font-size: 12px;
}

/* ================================
   PRE-SEASON FRIENDLIES: results + top scorers
================================ */

.preseason-subheading {
  font-size: 18px;
  color: #b30000;
  margin: 24px 0 10px;
}

.scorers-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}

.scorer-row {
  display: grid;
  grid-template-columns: 40px 1fr 70px;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.scorer-row:last-child {
  border-bottom: none;
}

.scorer-header {
  background: #b30000;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}

.scorer-rank {
  color: #999;
  font-weight: 700;
}

.scorer-header .scorer-rank {
  color: #fff;
}

.scorer-goals {
  text-align: right;
  font-weight: 700;
  color: #b30000;
}

.scorer-header .scorer-goals {
  color: #fff;
}

.management-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  overflow: hidden;
}

.management-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.management-row:last-child {
  border-bottom: none;
}

.mgmt-role {
  color: #b30000;
  font-weight: 700;
}

.preseason-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-row {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 10px 14px;
  border-left: 4px solid #b30000;
}

.pr-row.pr-not-played {
  border-left-color: #ccc;
  opacity: 0.7;
}

.pr-main {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  font-size: 14px;
}

.pr-date {
  color: #777;
  min-width: 80px;
}

.pr-opponent {
  font-weight: 700;
  flex: 1;
}

.pr-score {
  font-weight: 700;
  color: #b30000;
}

.pr-competition {
  color: #999;
  font-size: 12px;
}

.pr-scorers {
  margin-top: 4px;
  font-size: 12px;
  color: #555;
}

.no-data {
  color: #888;
  font-size: 14px;
  padding: 10px 0;
}

.preseason-view-all {
  margin-top: 16px;
  text-align: center;
}

.preseason-view-all a {
  color: #b30000;
  font-weight: 700;
  text-decoration: none;
}


.new-badge {
  display: inline-block;
  background: #ffcc00;
  color: #b30000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 8px;
  margin-left: 5px;
  vertical-align: super;
  line-height: 1;
}

/* ================================
   MATCH REPORT BANNER — auto-generated result graphic used as the
   thumbnail for any match report that doesn't have its own uploaded
   photo. Mood/colour depends on the result: bright/celebratory for a
   win, warm/neutral for a draw, muted/subdued for a loss. Pure CSS -
   no image file is ever generated, so it always matches whatever
   score is entered and never goes stale.
================================ */

.mr-banner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 4px solid;
  border-bottom: 4px solid;
  box-sizing: border-box;
  padding: 6px 12px;
  font-family: var(--t-heading-font, Arial, sans-serif);
  line-height: 1;
}

.mr-banner-comp {
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 3px;
}

.mr-banner-team {
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.mr-banner-team:first-of-type {
  margin-bottom: 4px;
}

.mr-banner-score {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  margin: 3px 0;
  letter-spacing: 0.02em;
}

.mr-banner-meta {
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}

/* Larger featured bento card (220px tall) gets a bigger, more confident banner */
.news-bento-row-2 .mr-banner { padding: 12px; }
.news-bento-row-2 .mr-banner-comp { font-size: 12px; margin-bottom: 8px; }
.news-bento-row-2 .mr-banner-team { font-size: 18px; line-height: 1.25; }
.news-bento-row-2 .mr-banner-team:first-of-type { margin-bottom: 6px; }
.news-bento-row-2 .mr-banner-score { font-size: 36px; margin: 6px 0; }
.news-bento-row-2 .mr-banner-meta { font-size: 11px; margin-top: 8px; }

/* news.html's card thumbnails have more room (160px) than the compact
   homepage bento cards (130px) - give the banner a bit more breathing
   room there instead of using the tightest sizing everywhere. */
.news-thumb-area .mr-banner { padding: 12px; }
.news-thumb-area .mr-banner-comp { font-size: 11px; margin-bottom: 6px; }
.news-thumb-area .mr-banner-team { font-size: 15px; line-height: 1.25; }
.news-thumb-area .mr-banner-team:first-of-type { margin-bottom: 5px; }
.news-thumb-area .mr-banner-score { font-size: 28px; margin: 5px 0; }
.news-thumb-area .mr-banner-meta { font-size: 10px; margin-top: 5px; }

.mr-banner-result-tag {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Shared diagonal stripe texture, tinted per result via currentColor-ish
   approach (each variant sets its own stripe colours below) */
.mr-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mr-banner > * {
  position: relative;
  z-index: 1;
}

/* --- WIN: bright, celebratory --- */
.mr-banner--win {
  border-color: #ffd541;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("/assets/images/banners/result-win.jpg?v=2");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mr-banner--win .mr-banner-team--us {
  color: #ffd541;
  text-shadow: 0 0 14px rgba(255,213,65,0.55);
}
.mr-banner--win .mr-banner-score {
  color: #ffd541;
  text-shadow: 0 0 14px rgba(255,213,65,0.55);
}
.mr-banner--win .mr-banner-result-tag {
  background: #ffd541;
  color: #7a0000;
}

/* --- DRAW: warm, content --- */
.mr-banner--draw {
  border-color: #e8b923;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("/assets/images/banners/result-draw.jpg?v=2");
  background-size: cover;
  background-position: center;
  color: #fff;
}
.mr-banner--draw .mr-banner-team--us {
  color: #ff8a80;
}
.mr-banner--draw .mr-banner-score {
  color: #f0c94a;
}
.mr-banner--draw .mr-banner-result-tag {
  background: #e8b923;
  color: #2b2416;
}

/* --- LOSS: muted, subdued - even Shortwood's own colour looks drained --- */
.mr-banner--loss {
  border-color: #555c63;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("/assets/images/banners/result-loss.jpg?v=2");
  background-size: cover;
  background-position: center;
  color: #c8ccd0;
}
.mr-banner--loss .mr-banner-team--us {
  color: #9c6b6b;
}
.mr-banner--loss .mr-banner-score {
  color: #9aa1a8;
}
.mr-banner--loss .mr-banner-result-tag {
  background: #555c63;
  color: #e2e5e8;
}
.mr-banner--loss .mr-banner-comp,
.mr-banner--loss .mr-banner-meta {
  opacity: 0.5;
}

/* ================================
   TEAM BADGE ICONS — league table crests
================================ */
.team-badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}

.team-badge-icon-sm {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.team-badge-icon-placeholder {
  display: inline-block;
  border-radius: 50%;
  background: var(--t-border, #ccc);
  opacity: 0.5;
}
