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

/* ===== Body ===== */
body {
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  /* Safari font rendering fix */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Text rendering optimization */
  text-rendering: optimizeLegibility;
}

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

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

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -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;
  display: -moz-box;
  display: box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -moz-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  word-break: break-word;
  word-wrap: break-word;
  white-space: normal;
  /* Firefox fallback */
  max-height: 2.8em;
}


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

.btn {
  padding: 10px 12px;
  border: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /*! gap: 8px; */
  /* Touch-friendly for mobile/tablet */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

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

.btn:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  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: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
  gap: 5px;
}

/* Each Tab Button */
.tab-btn, .episode-tab-btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0px 0;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #555;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 0px 0;
  border: 1px solid #ccc;
  /* Touch-friendly for mobile/tablet */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  min-height: 44px; /* Minimum touch target size for iOS */
}

/* 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: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  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%;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  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;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  padding: 10px;
}

.video-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  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: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 13px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ===== iPad Mini Specific Responsive ===== */

/* iPad Mini Portrait (768px × 1024px) */
@media only screen
  and (min-device-width: 768px)
  and (max-device-width: 1024px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 1) {

  .banner {
    height: 280px;
  }

  .banner-content h1 {
    font-size: 1.85rem;
    margin-bottom: 6px;
  }

  .news-section {
    padding: 24px;
    max-width: 900px;
  }

  .news-title {
    font-size: 15px;
    height: 2.6em;
  }

  .news-description {
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .news-buttons {
    gap: 18px;
    margin-bottom: 13px;
  }

  .btn {
    font-size: 15px;
    padding: 9px 22px;
  }

  .play-btn {
    padding: 9px 10px;
  }

  .share-btn {
    padding: 4px 9px 2px 8px !important;
  }

  .media-tabs,
  .episode-tabs {
    max-width: 850px;
    margin: 25px auto;
  }

  .tab-buttons,
  .episode-tabs {
    gap: 4px;
  }

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

  .player-section {
    margin: 18px auto;
    padding: 13px;
  }

  .player-container {
    max-width: 750px;
    padding: 18px;
  }

  .player-container audio,
  .player-container video {
    margin-bottom: 13px;
  }

  .video-list {
    max-width: 1100px;
    margin: 35px auto;
    padding: 0 18px 45px;
  }

  .video-list h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .episode-content {
    gap: 22px;
    margin-top: 18px;
  }

  .video-card {
    padding: 9px;
  }

  .video-card iframe,
  .video-card audio,
  .video-card video {
    margin-bottom: 9px;
  }

  .video-card h3 {
    font-size: 0.95rem;
  }

  .blue-text {
    font-size: 19px;
    margin: 18px;
  }

  .news-image-size {
    height: 170px;
  }

  .news-image-size1 {
    height: 260px;
  }

  .newsinner-image-size {
    height: 190px;
  }

  .episodeBtn {
    gap: 15px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .media-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }

  .episodeCard {
    height: 48px;
    width: 48px;
    font-size: 26px;
  }

  .btn-label {
    font-size: 12px;
    color: #3b0b3b;
    font-weight: 500;
  }

  .media-actions.episodeBtn .media-wrap {
    margin: 0 8px;
  }
}

/* iPad Mini Landscape (1024px × 768px) */
@media only screen
  and (min-device-width: 768px)
  and (max-device-width: 1024px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 1),
  only screen
  and (min-width: 768px)
  and (max-width: 1024px)
  and (orientation: landscape) {

  .banner {
    height: 300px;
  }

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

  .news-section {
    padding: 25px;
    max-width: 950px;
  }

  .news-title {
    font-size: 16px;
    height: 2.7em;
  }

  .news-description {
    font-size: 1rem;
    margin-top: 10px;
  }

  .news-buttons {
    gap: 20px;
    margin-bottom: 15px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  .play-btn {
    padding: 10px 24px;
  }

  .share-btn {
    padding: 5px 10px 3px 9px !important;
  }

  .media-tabs,
  .episode-tabs {
    max-width: 900px;
    margin: 30px auto;
  }

  .tab-buttons,
  .episode-tabs {
    gap: 5px;
  }

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

  .player-section {
    margin: 20px auto;
    padding: 15px;
  }

  .player-container {
    max-width: 800px;
    padding: 20px;
  }

  .player-container audio,
  .player-container video {
    margin-bottom: 15px;
  }

  .video-list {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 50px;
  }

  .video-list h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .episode-content {
    gap: 25px;
    margin-top: 20px;
  }

  .video-card {
    padding: 10px;
  }

  .video-card iframe,
  .video-card audio,
  .video-card video {
    margin-bottom: 10px;
  }

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

  .blue-text {
    font-size: 20px;
    margin: 20px;
  }

  .news-image-size {
    height: 180px;
  }

  .news-image-size1 {
    height: 280px;
  }

  .newsinner-image-size {
    height: 200px;
  }

  .episodeBtn {
    gap: 18px;
  }

  .episodeCard {
    height: 50px;
    width: 50px;
    font-size: 28px;
  }

  .btn-label {
    font-size: 13px;
  }

  .media-actions.episodeBtn .media-wrap {
    margin: 0 10px;
  }
}

/* ===== Tablet Responsive ===== */

/* Small Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 767px) {
  .banner {
    height: 250px;
  }

  .banner-content h1 {
    font-size: 1.75rem;
    margin-bottom: 5px;
  }

  .news-section {
    padding: 20px;
    max-width: 100%;
  }

  .news-title {
    font-size: 14px;
    height: 2.5em;
  }

  .news-description {
    font-size: 0.92rem;
    margin-top: 7px;
  }

  .news-buttons {
    gap: 15px;
    margin-bottom: 12px;
  }

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

  .play-btn {
    padding: 8px 20px;
  }

  .share-btn {
    padding: 3px 8px 1px 7px !important;
  }

  .media-tabs,
  .episode-tabs {
    max-width: 750px;
    margin: 22px auto;
  }

  .tab-buttons,
  .episode-tabs {
    gap: 3px;
  }

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

  .player-section {
    margin: 15px auto;
    padding: 12px;
  }

  .player-container {
    max-width: 700px;
    padding: 16px;
  }

  .player-container audio,
  .player-container video {
    margin-bottom: 12px;
  }

  .video-list {
    max-width: 100%;
    margin: 30px auto;
    padding: 0 15px 40px;
  }

  .video-list h2 {
    font-size: 1.35rem;
    margin-bottom: 15px;
  }

  .episode-content {
    gap: 20px;
    margin-top: 15px;
  }

  .video-card {
    padding: 8px;
  }

  .video-card iframe,
  .video-card audio,
  .video-card video {
    margin-bottom: 8px;
  }

  .video-card h3 {
    font-size: 0.9rem;
  }

  .blue-text {
    font-size: 18px;
    margin: 15px;
  }

  .news-image-size {
    height: 160px;
  }

  .news-image-size1 {
    height: 250px;
  }

  .newsinner-image-size {
    height: 180px;
  }

  .episodeBtn {
    gap: 12px;
  }

  .episodeCard {
    height: 45px;
    width: 45px;
    font-size: 24px;
  }

  .btn-label {
    font-size: 11px;
  }
}

/* Standard Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .banner {
    height: 280px;
  }

  .banner-content h1 {
    font-size: 1.9rem;
    margin-bottom: 6px;
  }

  .news-section {
    padding: 22px;
    max-width: 900px;
  }

  .news-title {
    font-size: 15px;
    height: 2.6em;
  }

  .news-description {
    font-size: 0.95rem;
    margin-top: 8px;
  }

  .news-buttons {
    gap: 18px;
    margin-bottom: 13px;
  }

  .btn {
    font-size: 15px;
    padding: 9px 22px;
  }

  .play-btn {
    padding: 9px 10px;
  }

  .share-btn {
    padding: 4px 9px 2px 8px !important;
  }

  .media-tabs,
  .episode-tabs {
    max-width: 850px;
    margin: 25px auto;
  }

  .tab-buttons,
  .episode-tabs {
    gap: 4px;
  }

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

  .player-section {
    margin: 18px auto;
    padding: 13px;
  }

  .player-container {
    max-width: 750px;
    padding: 18px;
  }

  .player-container audio,
  .player-container video {
    margin-bottom: 13px;
  }

  .video-list {
    max-width: 1100px;
    margin: 35px auto;
    padding: 0 18px 45px;
  }

  .video-list h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .episode-content {
    gap: 22px;
    margin-top: 18px;
  }

  .video-card {
    padding: 9px;
  }

  .video-card iframe,
  .video-card audio,
  .video-card video {
    margin-bottom: 9px;
  }

  .video-card h3 {
    font-size: 0.95rem;
  }

  .blue-text {
    font-size: 19px;
    margin: 18px;
  }

  .news-image-size {
    height: 170px;
  }

  .news-image-size1 {
    height: 260px;
  }

  .newsinner-image-size {
    height: 190px;
  }

  /* Episode page specific styles */
  .episodeBtn {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .media-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .episodeCard {
    height: 48px;
    width: 48px;
    font-size: 26px;
  }

  .btn-label {
    font-size: 12px;
    color: #3b0b3b;
    font-weight: 500;
  }

  .media-actions.episodeBtn .media-wrap {
    margin: 0 8px;
  }
}

/* Large Tablets (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  .banner {
    height: 300px;
  }

  .banner-content h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }

  .news-section {
    padding: 25px;
    max-width: 1000px;
  }

  .news-title {
    font-size: 16px;
    height: 2.7em;
  }

  .news-description {
    font-size: 1rem;
    margin-top: 12px;
  }

  .news-buttons {
    gap: 20px;
    margin-bottom: 15px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  .play-btn {
    padding: 5px 10px;
  }

  .share-btn {
    padding: 5px 10px 3px 9px !important;
  }

  .media-tabs,
  .episode-tabs {
    max-width: 950px;
    margin: 30px auto;
  }

  .tab-buttons,
  .episode-tabs {
    gap: 5px;
  }

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

  .player-section {
    margin: 20px auto;
    padding: 15px;
  }

  .player-container {
    max-width: 850px;
    padding: 20px;
  }

  .player-container audio,
  .player-container video {
    margin-bottom: 15px;
  }

  .video-list {
    max-width: 1200px;
    margin: 45px auto;
    padding: 0 25px 55px;
  }

  .video-list h2 {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }

  .episode-content {
    gap: 25px;
    margin-top: 22px;
  }

  .video-card {
    padding: 12px;
  }

  .video-card iframe,
  .video-card audio,
  .video-card video {
    margin-bottom: 12px;
  }

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

  .blue-text {
    font-size: 21px;
    margin: 20px;
  }

  .news-image-size {
    height: 180px;
  }

  .news-image-size1 {
    height: 300px;
  }

  .newsinner-image-size {
    height: 200px;
  }

  .episodeBtn {
    gap: 18px;
  }

  .episodeCard {
    height: 52px;
    width: 52px;
    font-size: 30px;
  }

  .btn-label {
    font-size: 13px;
  }

  .media-actions.episodeBtn .media-wrap {
    margin: 0 10px;
  }
}

/* ===== Browser Compatibility Fixes ===== */

/* Fix for Safari flexbox gap support */
@supports not (gap: 20px) {
  .news-buttons > * + * {
    margin-left: 20px;
  }

  .tab-buttons > * + *,
  .episode-tabs > * + * {
    margin-left: 5px;
  }
}

/* Fix for older Firefox versions */
@-moz-document url-prefix() {
  .news-title {
    display: block;
    max-height: 2.8em;
    overflow: hidden;
    position: relative;
  }

  .news-title::after {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent, #f9f9f9);
    padding-left: 10px;
  }
}

/* Fix for IE11 and older browsers */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .news-buttons {
    display: -ms-flexbox;
  }

  .tab-buttons,
  .episode-tabs {
    display: -ms-flexbox;
  }

  .player-section {
    display: -ms-flexbox;
  }

  .page-footer {
    display: -ms-flexbox;
  }
}

/* Safari specific fixes */
@supports (-webkit-appearance: none) {
  .banner img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .video-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* Chrome/Safari scrollbar styling */
.news-section::-webkit-scrollbar,
.video-list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.news-section::-webkit-scrollbar-track,
.video-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.news-section::-webkit-scrollbar-thumb,
.video-list::-webkit-scrollbar-thumb {
  background: #888;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.news-section::-webkit-scrollbar-thumb:hover,
.video-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox scrollbar styling */
.news-section,
.video-list {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* ===== 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%;
    -o-object-fit: fill;
    object-fit: fill;
}
.news-image-size1 {
    height: 280px;
    width: 100%;
    -o-object-fit: fill;
    object-fit: fill;
}
.newsinner-image-size{
    height: 200px;
    width: auto;
}
