
/* CARD */
.sports-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.section-header h1 {
  color: var(--primary-blue);
  font-weight: 700;
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
}

/* CONTENT */
.sports-content h2 {
  color: var(--primary-blue);
  margin-top: 20px;
}

.sports-content p {
  color: #444;
  line-height: 1.7;
}

/* TABLE */
.table-section {
  margin-top: 40px;
}

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

.sports-table thead {
  background: var(--primary-blue);
  color: #fff;
}

.sports-table th,
.sports-table td {
  padding: 12px;
  font-size: 14px;
}

.sports-table tbody tr:nth-child(even) {
  background: #f9fafc;
}

.sports-table tbody tr:hover {
  background: #eef2ff;
}

/* GALLERY */
.gallery-section {
  margin-top: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px) {

  .sports-card {
    padding: 20px;
  }

  .sports-table th,
  .sports-table td {
    font-size: 12px;
  }

  .gallery-grid img {
    height: 200px;
  }
}