/* ===========================================
   Fodbold i Dag - Dedicated Page Styles
   URL: /fodbold-i-dag/
   =========================================== */

/* --- Page base --- */
.fid-page {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

.fid-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Hero --- */
.fid-page-hero {
  background: linear-gradient(135deg, #0e3d1c 0%, #1a5f2a 50%, #28a745 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fid-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: fidHeroGlow 8s ease-in-out infinite alternate;
}

@keyframes fidHeroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

.fid-page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 14px;
  position: relative;
  letter-spacing: -0.5px;
}

.fid-page-hero-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto 30px;
  position: relative;
  line-height: 1.7;
}

/* Stats */
.fid-page-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.fid-page-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 28px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.fid-page-stat i {
  font-size: 1.2rem;
  color: #f4c430;
}

.fid-page-stat-val {
  font-size: 1.6rem;
  font-weight: 800;
}

.fid-page-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

/* --- Day Section --- */
.fid-page-day {
  padding: 40px 0 20px;
}

.fid-page-day-tomorrow {
  padding-top: 10px;
  padding-bottom: 20px;
}

.fid-page-day-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fid-page-day-title i {
  color: #f4c430;
}

/* --- League Card --- */
.fid-page-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fid-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fid-page-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(26, 95, 42, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fid-page-card-league {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fid-page-flag {
  font-size: 1.2rem;
}

.fid-page-league-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.fid-page-badge-dk {
  background: #f4c430;
  color: #1a1a2e;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.fid-page-badge-dk i {
  margin-right: 4px;
}

/* --- Channels row --- */
.fid-page-channels {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.fid-page-channels-label {
  color: #f4c430;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.fid-page-channels-label i {
  margin-right: 4px;
}

.fid-page-channels-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* --- Table --- */
.fid-page-table-wrap {
  overflow-x: auto;
}

.fid-page-table {
  width: 100%;
  border-collapse: collapse;
}

.fid-page-table thead th {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fid-page-table tbody td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fid-page-table tbody tr:last-child td {
  border-bottom: none;
}

.fid-page-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.fid-page-center {
  text-align: center;
}

.fid-page-team {
  font-weight: 500;
}

.fid-page-score {
  font-weight: 700;
  white-space: nowrap;
}

/* Status */
.fid-page-live {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fidPageBlink 1.2s ease-in-out infinite;
}

.fid-page-fin {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fid-page-ns {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

@keyframes fidPageBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Empty state --- */
.fid-page-empty {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fid-page-empty i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}

.fid-page-empty p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* --- Info Section --- */
.fid-page-info {
  padding: 40px 0 20px;
}

.fid-page-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.fid-page-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid #1a5f2a;
  transition: transform 0.3s ease;
}

.fid-page-info-card:hover {
  transform: translateY(-3px);
}

.fid-page-info-card h2 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: #f4c430;
}

.fid-page-info-card h2 i {
  margin-right: 6px;
}

.fid-page-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.fid-page-info-card p strong {
  color: rgba(255, 255, 255, 0.85);
}

.fid-page-disclaimer {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* --- Breadcrumb --- */
.fid-page-breadcrumb {
  padding: 20px 0 30px;
}

.fid-page-breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.fid-page-breadcrumb li::after {
  content: '>';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.fid-page-breadcrumb li:last-child::after {
  display: none;
}

.fid-page-breadcrumb a {
  color: #28a745;
  text-decoration: none;
}

.fid-page-breadcrumb a:hover {
  text-decoration: underline;
}

.fid-page-breadcrumb li:last-child {
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================================
   Liga Subpage Styles
   =========================================== */

/* Hero */
.fid-liga-hero {
  background: linear-gradient(135deg, #0e3d1c 0%, #1a5f2a 50%, #28a745 100%);
  padding: 50px 0 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fid-liga-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.fid-liga-hero-top {
  text-align: left;
  margin-bottom: 16px;
  position: relative;
}

.fid-liga-back {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.fid-liga-back:hover {
  color: #fff;
}

.fid-liga-back i {
  margin-right: 6px;
}

.fid-liga-flag {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.fid-liga-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
}

.fid-liga-hero-desc {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 28px;
  position: relative;
  line-height: 1.7;
}

.fid-liga-count {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-left: 10px;
}

/* TV Channel card */
.fid-liga-tv {
  padding: 30px 0 10px;
}

.fid-liga-tv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #f4c430;
}

.fid-liga-tv-card h2 {
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: #fff;
}

.fid-liga-tv-card h2 i {
  color: #f4c430;
  margin-right: 8px;
}

.fid-liga-tv-dk {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fid-liga-tv-dk-label {
  color: #f4c430;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fid-liga-tv-dk-label i {
  margin-right: 4px;
}

.fid-liga-tv-dk-val {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.fid-liga-tv-all {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.fid-liga-tv-all-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fid-liga-tv-all-label i {
  margin-right: 4px;
}

.fid-liga-tv-all-val {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Other leagues nav */
.fid-liga-nav {
  padding: 30px 0 10px;
}

.fid-liga-nav h2 {
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: #fff;
}

.fid-liga-nav h2 i {
  color: #f4c430;
  margin-right: 8px;
}

.fid-liga-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fid-liga-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.fid-liga-nav-item:hover {
  background: rgba(26, 95, 42, 0.3);
  border-color: rgba(26, 95, 42, 0.5);
  transform: translateY(-2px);
}

.fid-liga-nav-flag {
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
}
.fid-liga-nav-flag img {
  border-radius: 2px;
  vertical-align: middle;
}
.tip13-flag {
  border-radius: 2px;
  vertical-align: middle;
}

/* ===========================================
   Standings Table
   =========================================== */

.fid-liga-standings {
  padding: 30px 0 10px;
}

.fid-liga-standings-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  overflow: hidden;
}

.fid-liga-standings-card h2 {
  font-size: 1.1rem;
  margin: 0;
  padding: 16px 20px;
  color: #fff;
  background: rgba(26, 95, 42, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fid-liga-standings-card h2 i {
  color: #f4c430;
  margin-right: 8px;
}

.fid-liga-standings-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fid-liga-standings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

/* Header */
.fid-liga-standings-table thead th {
  background: rgba(255, 255, 255, 0.06);
  padding: 11px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.10);
  position: sticky;
  top: 0;
}

.fid-liga-standings-table thead th:nth-child(1) {
  width: 38px;
}

.fid-liga-standings-table thead th:nth-child(2) {
  text-align: left;
  padding-left: 14px;
}

/* Body cells */
.fid-liga-standings-table tbody td {
  padding: 9px 10px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.15s ease;
}

.fid-liga-standings-table tbody tr:last-child td {
  border-bottom: none;
}

/* Zebra striping */
.fid-liga-standings-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.fid-liga-standings-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.06);
}

/* Rank column */
.fid-standings-rank {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95) !important;
  width: 38px;
  font-size: 0.8rem !important;
}

/* Team column */
.fid-standings-team {
  text-align: left !important;
  padding-left: 14px !important;
  font-weight: 600;
  color: #fff !important;
  white-space: nowrap;
}

.fid-standings-team img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Team link in standings */
.fid-standings-team-link {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}

.fid-standings-team-link:hover {
  color: #28a745;
}

.fid-standings-team-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Points column */
.fid-standings-points {
  font-weight: 800;
  color: #fff !important;
  font-size: 0.9rem !important;
}

/* Zone highlighting — left border + subtle row tint */
.fid-standings-zone-cl td {
  border-left: none;
  background: rgba(40, 167, 69, 0.08);
}
.fid-standings-zone-cl td:first-child {
  box-shadow: inset 4px 0 0 #28a745;
}
.fid-standings-zone-cl:hover td {
  background: rgba(40, 167, 69, 0.15) !important;
}

.fid-standings-zone-el td {
  background: rgba(0, 123, 255, 0.07);
}
.fid-standings-zone-el td:first-child {
  box-shadow: inset 4px 0 0 #007bff;
}
.fid-standings-zone-el:hover td {
  background: rgba(0, 123, 255, 0.14) !important;
}

.fid-standings-zone-ecl td {
  background: rgba(23, 162, 184, 0.07);
}
.fid-standings-zone-ecl td:first-child {
  box-shadow: inset 4px 0 0 #17a2b8;
}
.fid-standings-zone-ecl:hover td {
  background: rgba(23, 162, 184, 0.14) !important;
}

.fid-standings-zone-rel td {
  background: rgba(220, 53, 69, 0.08);
}
.fid-standings-zone-rel td:first-child {
  box-shadow: inset 4px 0 0 #dc3545;
}
.fid-standings-zone-rel:hover td {
  background: rgba(220, 53, 69, 0.15) !important;
}

/* Zone legend below table */
.fid-standings-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fid-standings-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.fid-standings-legend-color {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.fid-standings-legend-color--cl { background: #28a745; }
.fid-standings-legend-color--el { background: #007bff; }
.fid-standings-legend-color--ecl { background: #17a2b8; }
.fid-standings-legend-color--rel { background: #dc3545; }

/* --- Team name links in match tables --- */
.fid-team-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.fid-team-link:hover {
  color: #28a745;
  text-decoration: underline;
}

/* Results page team links */
.col-home .fid-team-link,
.col-away .fid-team-link {
  color: inherit;
}

.col-home .fid-team-link:hover,
.col-away .fid-team-link:hover {
  color: #28a745;
}

/* ===========================================
   Team Page (Hold)
   =========================================== */

/* Hero */
.fid-hold-hero {
  background: linear-gradient(135deg, #0e3d1c 0%, #1a5f2a 50%, #28a745 100%);
  padding: 50px 0 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fid-hold-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.fid-hold-badge {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.fid-hold-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
}

.fid-hold-league {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0 0 24px;
  position: relative;
}

/* Form badges */
.fid-hold-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  position: relative;
}

.fid-hold-form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
  font-weight: 600;
}

.fid-hold-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.fid-hold-form-w {
  background: #28a745;
}

.fid-hold-form-d {
  background: #ffc107;
  color: #1a1a2e;
}

.fid-hold-form-l {
  background: #dc3545;
}

/* Team match table extras */
.fid-hold-table .fid-page-team img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 2px;
}

.fid-hold-date {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem !important;
  white-space: nowrap;
}

.fid-hold-round {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem !important;
  white-space: nowrap;
}

.fid-hold-highlight {
  color: #fff !important;
  font-weight: 700 !important;
}

/* Result W/D/L badge */
.fid-hold-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.fid-hold-result-w {
  background: #28a745;
}

.fid-hold-result-d {
  background: #ffc107;
  color: #1a1a2e;
}

.fid-hold-result-l {
  background: #dc3545;
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
  .fid-page-hero h1 {
    font-size: 2rem;
  }

  .fid-page-hero-sub {
    font-size: 0.95rem;
  }

  .fid-page-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .fid-page-stat {
    padding: 12px 20px;
  }

  .fid-page-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .fid-page-channels {
    flex-direction: column;
    gap: 4px;
    padding: 8px 14px;
  }

  .fid-page-channels-text {
    font-size: 0.75rem;
  }

  .fid-page-table thead th,
  .fid-page-table tbody td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .fid-page-info-grid {
    grid-template-columns: 1fr;
  }

  .fid-page-day-title {
    font-size: 1.2rem;
  }

  .fid-liga-hero h1 {
    font-size: 1.8rem;
  }

  .fid-liga-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fid-liga-tv-dk,
  .fid-liga-tv-all {
    flex-direction: column;
    gap: 4px;
  }

  .fid-liga-standings-card h2 {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .fid-liga-standings-table thead th,
  .fid-liga-standings-table tbody td {
    padding: 8px 7px;
    font-size: 0.8rem;
  }

  .fid-standings-team {
    padding-left: 10px !important;
  }

  .fid-standings-team img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .fid-standings-legend {
    gap: 12px;
    padding: 10px 16px;
  }

  .fid-hold-hero h1 {
    font-size: 1.7rem;
  }

  .fid-hold-badge {
    width: 70px;
    height: 70px;
  }

  .fid-hold-form-badge {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }
}

/* --- Responsive: 480px --- */
@media (max-width: 480px) {
  .fid-page-hero {
    padding: 40px 0 35px;
  }

  .fid-page-hero h1 {
    font-size: 1.6rem;
  }

  .fid-page-stat-val {
    font-size: 1.3rem;
  }

  .fid-page-table thead th,
  .fid-page-table tbody td {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .fid-liga-hero h1 {
    font-size: 1.4rem;
  }

  .fid-liga-nav-grid {
    grid-template-columns: 1fr;
  }

  .fid-liga-standings-card h2 {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .fid-liga-standings-table {
    min-width: 520px;
  }

  .fid-liga-standings-table thead th,
  .fid-liga-standings-table tbody td {
    padding: 7px 5px;
    font-size: 0.75rem;
  }

  .fid-standings-team {
    padding-left: 8px !important;
  }

  .fid-standings-team img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }

  .fid-standings-legend {
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.65rem;
  }

  .fid-hold-hero h1 {
    font-size: 1.4rem;
  }

  .fid-hold-badge {
    width: 60px;
    height: 60px;
  }

  .fid-hold-league {
    font-size: 0.85rem;
  }

  .fid-hold-form-badge {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  .fid-hold-result {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }
}

/* SEO descriptive text for team pages */
.fid-hold-seo-text {
  padding: 0 0 10px;
}
.fid-hold-seo-text p {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.6;
}
