
/* CONTENT BOX */
.sports-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  line-height: 1.8;
  position: relative;
}

/* TITLE */
.sports-content h2 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 20px;
}

/* FLOAT IMAGE */
.sports-img {
  float: right;
  width: 320px;
  margin: 0 0 15px 20px;
}

.sports-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* TEXT */
.sports-content p {
  color: #444;
  text-align: justify;
  margin-bottom: 15px;
}

/* CLEAR FLOAT */
.sports-content::after {
  content: "";
  display: block;
  clear: both;
}

/* ================= CAROUSEL ================= */

.sports-carousel {
  margin-top: 40px;
}

.sports-carousel .item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.sports-carousel .item:hover {
  transform: translateY(-5px);
}

.sports-carousel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.sports-carousel h5 {
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--primary-blue);
  color:#fff;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .sports-img {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .sports-content {
    padding: 20px;
  }

}