/* AthLead Sports Templates
 * Shared styling for sport-specific landing pages.
 */

:root {
  --athlead-orange: #fe5900;
  --athlead-deep: #0f1118;
  --athlead-card: #121823;
  --athlead-ink: #0c0e13;
  --athlead-stroke: rgba(255, 255, 255, 0.08);
  --athlead-text: #e9edf5;
  --athlead-muted: #c7cfdd;
  --athlead-surface: linear-gradient(145deg, rgba(254, 89, 0, 0.12), rgba(14, 17, 26, 0.8));
}

body.sport-page {
  background: radial-gradient(circle at 10% 10%, rgba(254, 89, 0, 0.14), transparent 25%),
              radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
              #0a0c12;
  color: var(--athlead-text);
  font-family: 'Figtree', 'Poppins', sans-serif;
  letter-spacing: 0.1px;
}

.athlead-sport-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 18px 80px;
}

/* Hero */
.athlead-sport-hero {
  max-width: 1180px;
  margin: 26px auto 10px;
  padding: 36px 22px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(254, 89, 0, 0.85), rgba(254, 89, 0, 0.45)),
              radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 35%),
              #111520;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.athlead-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px 26px;
  align-items: center;
}

.athlead-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  font-size: 12px;
}

.athlead-hero-title {
  font-size: clamp(32px, 4vw, 46px);
  margin: 10px 0 6px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.athlead-hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #f8f9fb;
  margin-bottom: 14px;
}

.athlead-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.athlead-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.athlead-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* Sections */
.athlead-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--athlead-stroke);
}

.athlead-section:last-of-type {
  border-bottom: none;
}

.athlead-section-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px 30px;
  align-items: start;
  margin-bottom: 18px;
}

.athlead-eyebrow {
  color: var(--athlead-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  margin-bottom: 8px;
}

.athlead-section-title {
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
  font-weight: 800;
}

.athlead-section-copy {
  margin: 0;
  color: var(--athlead-muted);
  line-height: 1.65;
}

/* Cards & grids */
.athlead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 18px;
}

.athlead-card {
  background: var(--athlead-card);
  border: 1px solid var(--athlead-stroke);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.athlead-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 12%, rgba(254, 89, 0, 0.12), transparent 38%);
  pointer-events: none;
}

.athlead-card__title {
  font-size: 20px;
  margin: 2px 0 10px;
  color: #fff;
  font-weight: 700;
}

.athlead-card__excerpt {
  color: var(--athlead-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.athlead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.athlead-tag {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(254, 89, 0, 0.14);
  color: #fff;
  border: 1px solid rgba(254, 89, 0, 0.35);
  font-weight: 600;
}

.athlead-muted-text {
  color: var(--athlead-muted);
}

/* Forms */
.athlead-inline-form {
  background: var(--athlead-card);
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid var(--athlead-stroke);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.athlead-inline-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--athlead-muted);
  font-weight: 700;
}

.athlead-inline-form .athlead-form-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.athlead-inline-form input[type="text"] {
  flex: 1;
  border-radius: 10px;
  border: 1px solid var(--athlead-stroke);
  background: #0f131d;
  color: #fff;
  padding: 12px 14px;
}

.athlead-inline-form input[type="text"]::placeholder {
  color: #7c8598;
}

/* Buttons */
.athlead-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 18px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.athlead-button--primary {
  background: linear-gradient(90deg, #fe5900, #ffa133);
  color: #0a0c12;
  box-shadow: 0 12px 30px rgba(254, 89, 0, 0.35);
}

.athlead-button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.athlead-button--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.athlead-button:hover {
  transform: translateY(-1px);
}

/* Video cards */
.athlead-video-card iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
}

.athlead-video-card .athlead-card__excerpt {
  color: #f4f4f4;
}

/* Empty states */
.athlead-empty {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed var(--athlead-stroke);
  color: var(--athlead-muted);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
}

/* Footer link */
.athlead-back {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 600px) {
  .athlead-inline-form .athlead-form-row {
    flex-direction: column;
  }

  .athlead-hero-actions {
    width: 100%;
  }

  .athlead-button {
    width: 100%;
    justify-content: center;
  }
}