

.sports-card{
  background:#ffffff;
  border-radius:18px;
  padding:45px;
  box-shadow:0 8px 28px rgba(0,0,0,0.08);
  border-top:6px solid var(--accent-red);
}

.sports-card h1{
  font-size:34px;
  color:var(--primary-blue);
  font-weight:700;
  margin-bottom:30px;
  position:relative;
  padding-left:18px;
}

.sports-card h1::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:6px;
  height:85%;
  background:var(--accent-red);
  border-radius:10px;
}

.sports-card p{
  color:var(--text-black);
  font-size:16px;
  line-height:1.9;
  margin-bottom:22px;
  text-align:justify;
}

.pdf-wrapper{
  margin-top:40px;
}

.pdf-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  margin-bottom:35px;
  box-shadow:0 5px 18px rgba(0,0,0,0.08);
  border:1px solid rgba(38,52,137,0.08);
}

.pdf-title{
  background:var(--primary-blue);
  color:#fff;
  padding:16px 22px;
  font-size:18px;
  font-weight:600;
  letter-spacing:0.5px;
}

.pdf-card iframe{
  width:100%;
  height:800px;
  border:none;
}

.gallery{
  margin-top:40px;
}

.gallery .gallery-item{
  margin-bottom:25px;
}

.gallery .gallery-item img{
  width:100%;
  border-radius:14px;
  transition:0.4s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.gallery .gallery-item img:hover{
  transform:scale(1.03);
}

@media(max-width:768px){

  .sports-card{
    padding:25px 20px;
  }

  .sports-card h1{
    font-size:26px;
  }

  .sports-card p{
    font-size:15px;
  }

  .pdf-card iframe{
    height:500px;
  }
}