/*==========================================
        NEWS & MEDIA PAGE STYLES
===========================================*/

/* Section Header */
.news-section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.news-section-header .section-title {
  font-size: 38px;
  font-weight: 800;
  color: #14181b;
  margin: 12px 0 12px;
  line-height: 1.2;
}

.news-section-header .section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.news-section-header--light h2 {
  color: #fff;
}

.news-section-header--light .section-desc {
  color: rgba(255, 255, 255, .75);
}

/*==========================================
        GALLERY
===========================================*/

.news-gallery-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.news-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.news-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

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

.news-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 13, 14, .8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s;
}

.news-gallery-item:hover .news-gallery-overlay {
  opacity: 1;
}

.news-gallery-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.news-gallery-tall {
  grid-row: span 2;
}

/*==========================================
        MEDIA RELEASES
===========================================*/

.news-releases-section {
  background: #fff;
  padding: 100px 0;
}

.news-releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-release-card {
  display: flex;
  gap: 20px;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: .35s;
}

.news-release-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.news-release-date {
  min-width: 64px;
  text-align: center;
  flex-shrink: 0;
}

.news-release-day {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FDC900;
  line-height: 1;
}

.news-release-month {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 600;
  margin-top: 4px;
}

.news-release-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #FDC900;
  background: rgba(245, 130, 17, .1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-release-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 8px;
  line-height: 1.3;
}

.news-release-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*==========================================
        CORPORATE ADVERTS & BROCHURE
===========================================*/

.news-brochure-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.news-brochure-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-brochure-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-brochure-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .93), rgba(11, 13, 14, .88));
}

.news-brochure-section .wrap {
  position: relative;
  z-index: 2;
}

.news-brochure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news-brochure-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: .35s;
}

.news-brochure-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-6px);
}

.news-brochure-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 130, 17, .2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #FDC900;
}

.news-brochure-icon i {
  width: 26px;
  height: 26px;
}

.news-brochure-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.news-brochure-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin: 0 0 24px;
}

.news-brochure-card .btn-sm {
  background: rgba(245, 130, 17, .2);
  color: #FDC900;
  border: 1px solid rgba(245, 130, 17, .3);
}

.news-brochure-card .btn-sm:hover {
  background: #FDC900;
  color: #14181b;
}

/*==========================================
        EXECUTIVE INTERVIEWS
===========================================*/

.news-interviews-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.news-interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-interview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: .35s;
}

.news-interview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.news-interview-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.news-interview-card:hover .news-interview-image img {
  transform: scale(1.05);
}

.news-interview-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 14, .3);
  opacity: 0;
  transition: opacity .35s;
}

.news-interview-card:hover .news-interview-play {
  opacity: 1;
}

.news-interview-play i {
  width: 48px;
  height: 48px;
  color: #fff;
}

.news-interview-content {
  padding: 24px;
}

.news-interview-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #FDC900;
  background: rgba(245, 130, 17, .1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-interview-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #14181b;
  margin: 0 0 10px;
  line-height: 1.3;
}

.news-interview-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 16px;
}

.news-interview-meta {
  display: flex;
  gap: 16px;
}

.news-interview-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
}

.news-interview-meta span i {
  width: 14px;
  height: 14px;
}

/*==========================================
        CTA
===========================================*/

.news-cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.news-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 13, 14, .92), rgba(11, 13, 14, .85));
}

.news-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.news-cta-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.news-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 32px;
}

.news-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

/*==========================================
        RESPONSIVE
===========================================*/

@media (max-width: 992px) {
  .news-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .news-releases-grid {
    grid-template-columns: 1fr;
  }

  .news-brochure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-interviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-gallery-section,
  .news-releases-section,
  .news-brochure-section,
  .news-interviews-section,
  .news-cta-section {
    padding: 60px 0;
  }

  .news-section-header .section-title,
  .news-cta-content h2 {
    font-size: 28px;
  }

  .news-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .news-gallery-tall {
    grid-row: span 1;
  }

  .news-brochure-grid {
    grid-template-columns: 1fr;
  }

  .news-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .news-release-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/*==========================================
        VIDEO GALLERY
===========================================*/

.news-video-section {
  background: #fff;
  padding: 100px 0;
}

.news-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.news-video-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #14181b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  transition: .35s;
}

.news-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}

.news-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}

@media (max-width: 768px) {
  .news-video-grid {
    flex-direction: column;
    align-items: center;
  }
  .news-video-card {
    flex: 0 0 100%;
    max-width: 500px;
  }
}
