/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 40vh;
  background: url("../images/chairman-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #DAC0A3;
  font-size: 36px;
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 120px;
}

/* ================= BLOG PAGE ================= */
.news-details-page {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  padding: 80px 20px;
}

/* ================= BLOG ITEM ================= */
.news-container {
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}



/* TITLE */
.news-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

/* META */
.news-meta {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.news-meta i {
  color: #DAC0A3;
  margin-right: 6px;
}

/* TEXT */
.news-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #333;
}

/* QUOTE */
.news-content blockquote {
  margin: 35px 0;
  padding: 25px 30px;
  background: #f8f8f8;
  border-left: 5px solid #DAC0A3;
  font-style: italic;
  color: #444;
  border-radius: 10px;
}

.news-content blockquote span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: #000;
}

/* ================= MEDIA BELOW BLOG ================= */
.news-media {
  margin-top: 50px;
}

/* MEDIA BLOCK */
.media-block {
  margin-bottom: 70px;
}

.media-heading {
  font-size: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #DAC0A3;
  padding-left: 14px;
}

/* GRID */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* INITIAL 4 ITEMS */
.media-grid > * {
  display: none;
}

.media-grid > *:nth-child(-n+4) {
  display: block;
}

/* IMAGE */
.images-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
}

/* VIDEO */
.videos-grid video {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  background: #000;
}

/* LOAD MORE BUTTON */
.load-more-btn {
  margin: 25px auto 0;
  display: block;
  padding: 10px 32px;
  border-radius: 30px;
  background: #DAC0A3;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* ================= HIGHLIGHT ================= */
.news-highlight {
  animation: highlight 2s ease;
}

@keyframes highlight {
  from { background: #fff6ea; }
  to { background: transparent; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 30vh;
  }

  .hero-title {
    font-size: 24px;
    padding-bottom: 60px;
  }

  .news-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .news-details-page {
    padding: 60px 15px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .news-title {
    font-size: 22px;
  }
}



/* ================= MAX BLOG WIDTH ================= */
.news-details-page {
  max-width: 1400px; /* increased */
  margin: auto;
  padding: 80px 24px;
}



/* ================= MEDIA TOGGLE ================= */
.media-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.media-toggle button {
  padding: 10px 28px;
  border-radius: 30px;
  border: 1px solid #DAC0A3;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.media-toggle button.active {
  background: #DAC0A3;
  color: #000;
}

/* Hide inactive media */
.media-block {
  display: none;
}

.media-block.active {
  display: block;
}


/* ===== FIX BLANK RIGHT SPACE ===== */

.news-container {
  max-width: 100%;
}

.news-content {
  width: 100%;
}

/* Improve readability while full width */
.news-content p {
  max-width: 100%;
}



/* VIDEO EMBED SUPPORT */
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* VIDEO GRID ITEMS */
.videos-grid video {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  background: #000;
}


/* ===== UNIFIED VIDEO CARD STYLE ===== */

.video-item {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* Make both video & iframe behave same */
.video-item video,
.video-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  background: #000;
  display: block;
}
