/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

/* ===== Body ===== */
body {
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* ===== Banner Section ===== */
.banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ===== News Section ===== */
.news-section {
  /* max-width: 900px; */
  margin: auto;
  padding: 25px;
  text-align: center;
}

.news-title {
  font-size: 14px;
  color: #6a0dad;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 2.8em; /* roughly 2 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -webkit-box-orient: vertical;
  word-break: break-word;
  white-space: normal;
}


/* Buttons Row */
.news-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.btn {
  padding: 10px 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  /*! gap: 8px; */
}

.play-btn {
  /* background: #6a0dad; */
  color: #fff;
}

.share-btn {
  background: #3b0b3b;
  color: #fff;
  padding: 5px 10px 3px 9px !important;
}

.btn:hover {
  transform: scale(1.05);
}

/* News Description */
.news-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
  text-align: justify;
}

/* ===== Media Tabs ===== */
.media-tabs, .episode-tabs {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Tab Buttons Container */
.tab-buttons, .episode-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
  gap: 5px;
}

/* Each Tab Button */
.tab-btn, .episode-tab-btn {
  flex: 1;
  padding: 0px 0;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0px 0;
  border: 1px solid #ccc;
}

/* Active Button */
.tab-btn.active, .episode-tab-btn.active {
  background: #6a0dad;
  color: #fff;
  font-weight: 600;
  width: 100%;
  border: 1px solid #6a0dad;
  padding: 0px 0;
}


/* ===== Player Section ===== */
.player-section {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  padding: 15px;
}

.player-container {
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

/* Audio & Video Players */
.player-container audio,
.player-container video {
  width: 100%;
  border-radius: 10px;
  outline: none;
  margin-bottom: 15px;
}

/* ===== Video / Latest Episodes Section ===== */
.video-list {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 50px;
}

.video-list h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #6a0dad;
}

.episode-content {
  /*! display: grid; */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  /*! gap: 25px; */
  margin-top: 20px;
}

.video-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  text-align: center;
  padding: 10px;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card iframe,
.video-card audio,
.video-card video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.video-card h3 {
  font-size: 1rem;
  color: #333;
}

/* Loading text */
.blue-text {
  color:#32064E;
  text-align: center;
  margin: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* ===== Footer ===== */
.page-footer {
  padding: 30px;
  background-color: #552055;
  color: #fff;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 1.6rem;
  }

  .news-section {
    padding: 20px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .video-card iframe {
    height: 160px;
  }

  .tab-btn, .episode-tab-btn {
    font-size: 14px;
    padding: 10px 0;
  }

  .player-container {
    max-width: 90%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 180px;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .video-card iframe {
    height: 150px;
  }

  .news-title {
    font-size: 1.3rem;
  }

  .news-description {
    font-size: 0.9rem;
  }

  .news-buttons .btn {
    width: 90%;
    font-size: 14px;
    padding: 12px 0;
    justify-content: center;
  }

  .tab-btn, .episode-tab-btn {
    font-size: 13px;
    padding: 8px 0;
    width: 90%;
  }

  .media-tabs, .episode-tabs {
    max-width: 85%;
  }

  .player-container {
    max-width: 95%;
    padding: 12px;
  }
}
.news-image-size {
    height: 180px;
    width: 100%;
    object-fit: fill;
}
.news-image-size1 {
    height: 280px;
    width: 100%;
    object-fit: fill;
}
.newsinner-image-size{
    height: 200px;
    width: auto;
}
