.youtube-video-section p {
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.3;
  font-size: 1rem;
  color: #fff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* YouTube Video Section */
.youtube-video-section {
  padding: 28px 0 18px 0;
  text-align: center;
}
.youtube-video-section h2 {
  color: #fc3f40;
  margin-bottom: 28px;
  font-size: 2rem;
}


.youtube-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.youtube-video-wrapper iframe {
  width: 80vw;
  max-width: 700px;
  height: 40vw;
  max-height: 394px;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 2px 16px #0003;
}
@media (max-width: 600px) {
  .youtube-video-wrapper iframe {
    width: 98vw;
    height: 56vw;
    max-width: 100%;
    max-height: 240px;
  }
}
.sports-header {
  background: url('WebsiteImages/Still D2.jpg') center/cover no-repeat;
}


.youtube-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.youtube-card {
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
}
.youtube-card.left {
  flex-direction: row;
}
.youtube-image {
  flex: 1 1 320px;
  min-width: 180px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px;
}
.youtube-text {
  flex: 2 1 400px;
  padding: 24px 32px;
  text-align: center;
}
.youtube-text h3 {
  color: #fc3f40;
  font-size: 37px;
  margin-bottom: 12px;
  text-align: center;
}

.youtube-text h4 {
  color: #a5a5a5;
  font-size: 20px;
  text-align: center;
}
.youtube-text p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
  padding-top: 20px;
}
.youtube-list {
  color: #ffffff;
  margin: 12px 0 18px 18px;
  padding-left: 0;
  padding-top: 10px;
  text-align: center;
}
.youtube-list li {
  margin-bottom: 8px;
  list-style: disc inside;
}
.youtube-link {
  color: #fc3f40;
  text-decoration: underline;
}
.youtube-price {
  display: inline-block;
  margin-top: 18px;
  background: #fc3f40;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;

  
}
.youtube-price:hover {
  background: #d32f2f;
}

@media (max-width: 900px) {
  .youtube-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .youtube-card {
    flex-direction: column;
    max-width: 98vw;
  }
  .youtube-image img {
    height: 160px;
    margin: 8px 8px 0 8px;
  }
  .youtube-text {
    padding: 18px 10px;
    text-align: center;
  }
}
