

/* ===============================
   STATS
================================ */
.sports-stats {
  background: #ffffff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.sports-stats .stat {
  background: #f1f5f9;
  padding: 35px 20px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.sports-stats .stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.sports-stats h2 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.sports-stats p {
  font-weight: 500;
  color: #475569;
}

/* ===============================
   SPORTS ACHIEVEMENTS
================================ */
.sports-achievements {
  background: #f8fafc;
}

.sports-achievements h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #0f172a;
}

.sports-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.sports-card.reverse {
  direction: rtl;
}

.sports-card.reverse .info {
  direction: ltr;
}

.sports-card img {
  height: 340px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.sports-card .info h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.sports-card .info span {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #16a34a;
}

.sports-card .info p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

/* ===============================
   QUOTE
================================ */
.sports-quote {
  background: linear-gradient(to right, #1e3a8a, #0b1d3a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.sports-quote h2 {
  font-size: 32px;
  font-style: italic;
  margin-bottom: 12px;
}

.sports-quote p {
  font-size: 16px;
  opacity: 0.9;
}
