/**
 * SofaScore Match Reports Archive — hub / sport / league pages.
 *
 * alpha87 — styles for /match-reports/, /match-reports/{sport}/,
 * /match-reports/{sport}/{league}/. Standalone — does not depend on
 * any single theme, uses its own wrapper widths and reset.
 */

/* ── Wrapper ───────────────────────────────────── */
.aiseo-mr-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Microsoft JhengHei", "PingFang TC", sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

/* ── Hero ──────────────────────────────────────── */
.aiseo-mr-hero {
  padding: 48px 32px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3730a3 100%);
  color: #fff;
  border-radius: 18px;
  margin-bottom: 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(30, 58, 138, .22);
}

.aiseo-mr-title {
  font-size: 2.4em;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.25;
  color: #fff;
}

.aiseo-mr-subtitle {
  font-size: 1.05em;
  margin: 0;
  color: #dbeafe;
  opacity: .95;
}

/* ── Breadcrumb ────────────────────────────────── */
.aiseo-mr-breadcrumb {
  margin: 0 0 28px;
  font-size: .95em;
  color: #6b7280;
}

.aiseo-mr-breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
}

.aiseo-mr-breadcrumb a:hover {
  text-decoration: underline;
}

.aiseo-mr-breadcrumb .sep {
  margin: 0 10px;
  color: #9ca3af;
}

/* ── Section titles ────────────────────────────── */
.aiseo-mr-section-title {
  font-size: 1.5em;
  font-weight: 700;
  margin: 32px 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e5e7eb;
  color: #111827;
}

/* ── Empty state ───────────────────────────────── */
.aiseo-mr-empty {
  padding: 40px 24px;
  text-align: center;
  color: #6b7280;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
}

/* ── Sports grid (hub page) ────────────────────── */
.aiseo-mr-sports-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.aiseo-mr-sport-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.aiseo-mr-sport-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, .14);
  border-color: #3b82f6;
}

.aiseo-mr-sport-card--empty {
  opacity: .55;
}

.aiseo-mr-sport-icon {
  font-size: 2.3em;
  line-height: 1;
}

.aiseo-mr-sport-name {
  font-size: 1.05em;
  font-weight: 700;
  color: #111827;
}

.aiseo-mr-sport-en {
  font-size: .78em;
  color: #6b7280;
  letter-spacing: .02em;
}

.aiseo-mr-sport-count {
  font-size: .8em;
  color: #3b82f6;
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 4px;
}

/* ── League cards (sport page) ─────────────────── */
.aiseo-mr-league-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}

.aiseo-mr-league-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  border: 1px solid #e5e7eb;
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.aiseo-mr-league-card:hover {
  border-left-color: #1e40af;
  box-shadow: 0 8px 20px rgba(30, 58, 138, .14);
  transform: translateX(3px);
}

.aiseo-mr-league-card--empty {
  opacity: .55;
}

.aiseo-mr-league-en {
  font-size: 1.15em;
  font-weight: 800;
  color: #111827;
  letter-spacing: .01em;
}

.aiseo-mr-league-zh {
  font-size: .92em;
  color: #6b7280;
}

.aiseo-mr-league-count {
  font-size: .82em;
  font-weight: 700;
  color: #3b82f6;
  margin-top: 6px;
}

/* ── Report cards ──────────────────────────────── */
.aiseo-mr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.aiseo-mr-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .18s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.aiseo-mr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(30, 58, 138, .15);
  border-color: #3b82f6;
}

.aiseo-mr-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 630;
  background: #1e3a8a;
  overflow: hidden;
}

.aiseo-mr-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aiseo-mr-card-body {
  padding: 16px 18px 18px;
}

.aiseo-mr-card-badge {
  display: inline-block;
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: #3b82f6;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.aiseo-mr-card-title {
  font-size: 1.05em;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.aiseo-mr-card-meta {
  margin-top: 8px;
  font-size: .85em;
  color: #6b7280;
}

/* ── Pagination ────────────────────────────────── */
.aiseo-mr-pagination {
  margin: 40px 0 20px;
  text-align: center;
}

.aiseo-mr-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  background: #fff;
  font-weight: 600;
  font-size: .95em;
  transition: all .15s;
}

.aiseo-mr-pagination .page-numbers:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1e40af;
}

.aiseo-mr-pagination .page-numbers.current {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

.aiseo-mr-link-back {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #3b82f6;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.aiseo-mr-link-back:hover {
  background: #1e40af;
  color: #fff;
}

/* ── Mobile tune ───────────────────────────────── */
@media (max-width: 720px) {
  .aiseo-mr-wrap {
    margin: 20px auto;
    padding: 0 16px;
  }
  .aiseo-mr-hero {
    padding: 32px 20px;
    border-radius: 12px;
  }
  .aiseo-mr-title {
    font-size: 1.7em;
  }
  .aiseo-mr-subtitle {
    font-size: .95em;
  }
  .aiseo-mr-section-title {
    font-size: 1.2em;
  }
  .aiseo-mr-sports-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .aiseo-mr-cards {
    grid-template-columns: 1fr;
  }
}
