/* ═══════════════════════════════════════════════════════════
   STANDINGS TABLES — Lamar Cardinals Sports
   ═══════════════════════════════════════════════════════════ */

.lcs-standings-wrap {
  background: var(--lcs-white);
  border: 1px solid var(--lcs-gray-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

/* Header bar */
.lcs-standings-header {
  background: var(--lcs-dark);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--lcs-red);
}
.lcs-standings-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.lcs-standings-season {
  color: var(--lcs-red);
  font-size: 11px;
  font-weight: 400;
  margin-left: 6px;
  font-family: var(--font-body);
}
.lcs-standings-conf {
  color: #555;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Empty state */
.lcs-standings-empty {
  padding: 24px;
  text-align: center;
  color: var(--lcs-gray-4);
  font-size: 13px;
}

/* Table wrapper — horizontal scroll on small screens */
.lcs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Table */
.lcs-standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 540px;
}
.lcs-standings-table thead tr {
  background: #f5f5f5;
  border-bottom: 2px solid var(--lcs-red);
}
.lcs-standings-table th {
  padding: 8px 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--lcs-gray-4);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.lcs-th-team { text-align: left !important; padding-left: 14px !important; }
.lcs-th-rank { width: 32px; }
.lcs-standings-table td {
  padding: 9px 10px;
  text-align: center;
  border-bottom: 1px solid var(--lcs-gray-2);
  white-space: nowrap;
  color: #333;
}
.lcs-standings-table tbody tr:last-child td { border-bottom: none; }

/* Alternating rows */
.lcs-stand-even td { background: #fff; }
.lcs-stand-odd  td { background: #fafafa; }

/* Lamar row — highlighted */
.lcs-stand-lamar td {
  background: #fff5f5 !important;
  border-top: 1px solid #ffcccc;
  border-bottom: 1px solid #ffcccc;
}
.lcs-stand-lamar .lcs-td-team {
  color: var(--lcs-red) !important;
  font-weight: 700 !important;
}

/* Team name cell */
.lcs-td-team {
  text-align: left;
  padding-left: 14px !important;
  font-weight: 600;
  color: #111;
  min-width: 160px;
}
.lcs-td-rank { color: var(--lcs-gray-4); font-size: 11px; font-weight: 700; }
.lcs-td-pct  { font-weight: 700; color: #111; }

/* Red dot indicator for Lamar row */
.lcs-lamar-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lcs-red);
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Conference standings divider line (top half / bottom half) */
.lcs-standings-table .lcs-conf-divider td {
  border-top: 2px dashed var(--lcs-gray-3) !important;
}

/* All Standings page — gender group labels */
.lcs-standings-gender-group {
  margin-bottom: 28px;
}
.lcs-standings-gender-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--lcs-gray-4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lcs-gray-2);
}

/* Homepage standings widget — compact version */
.lcs-standings-widget .lcs-standings-table {
  min-width: 280px;
  font-size: 11px;
}
.lcs-standings-widget .lcs-standings-table th { font-size: 9px; padding: 6px 8px; }
.lcs-standings-widget .lcs-standings-table td { padding: 7px 8px; }

/* ═══════════════════════════════════════════════════════════
   BANNER ADS — 728 x 90 px (leaderboard)
   ═══════════════════════════════════════════════════════════ */

.lcs-banner-wrap {
  width: 100%;
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lcs-banner-wrap.lcs-banner-top {
  border-bottom: 3px solid var(--lcs-red);
  min-height: 96px;
}
.lcs-banner-wrap.lcs-banner-bottom {
  border-top: 3px solid var(--lcs-red);
  min-height: 96px;
  margin-top: 0;
}
.lcs-banner-inner {
  width: 728px;
  height: 90px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lcs-banner-inner img {
  width: 728px;
  height: 90px;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.lcs-banner-inner a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Placeholder shown when no banner image is set */
.lcs-banner-placeholder {
  width: 728px;
  height: 90px;
  max-width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #1a1a1a 0px,
    #1a1a1a 60px,
    #161616 60px,
    #161616 120px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed #333;
  border-radius: 2px;
}
.lcs-banner-placeholder span {
  color: #333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.lcs-banner-placeholder strong {
  color: var(--lcs-red);
  font-size: 12px;
}

/* Label tag on banner */
.lcs-banner-label {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 8px;
  color: #333;
  letter-spacing: 0.5px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .lcs-banner-inner { width: 100%; height: auto; min-height: 60px; }
  .lcs-banner-inner img { width: 100%; height: auto; }
  .lcs-banner-placeholder { height: 60px; }
}
