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

/* HEADER */
.sports-header {
  padding-left: 15px;
  margin-bottom: 20px;
}

.sports-header h1 {
  color: var(--primary-blue);
  font-weight: 700;
  text-align:center;
}

/* TEXT */
.sports-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* CAROUSEL */
.sports-gallery {
  margin-top: 20px;
}

.sports-carousel .item {
  padding: 5px;
}

.sports-carousel img {
  width: 100%;
  border-radius: 12px;
  transition: 0.3s;
}

.sports-carousel img:hover {
  transform: scale(1.05);
}

/* NAV BUTTON */
.owl-nav button {
  background: var(--primary-blue) !important;
  color: #fff !important;
  border-radius: 6px;
  margin: 5px;
}

.owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* DOTS */
.owl-dots .owl-dot span {
  background: #ccc;
}

.owl-dots .owl-dot.active span {
  background: var(--primary-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sports-card {
    padding: 20px;
  }
}