/* ===== NEWS HEADER OVERRIDE ===== */
.news-page {
  --header-bg-rgb: 61, 79, 95;
}

/* ===== NEWS HERO ===== */
.news-hero {
  position: relative;
  width: 100%;
}

.news-hero-accent {
  display: none;
}

.news-hero-content {
  display: flex;
  width: 100%;
}

.news-hero-left {
  width: 58%;
  padding: 80px 40px 40px max(40px, calc((100vw - 1200px) / 2 + 40px));
  display: flex;
  align-items: flex-end;
}

.news-hero-left h1 {
  font-size: 56px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.news-hero-right {
  width: 42%;
  overflow: hidden;
  padding-top: 40px;
  margin-left: -10%;
}

.news-hero-right img {
  width: 100%;
  height: 512px;
  object-fit: cover;
}

/* ===== NEWS ARTICLES ===== */
.news-articles {
  padding: 64px 0 48px;
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
}

.news-grid-left {
  display: flex;
  flex-direction: column;
}

.news-grid-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-article {
  display: block;
  border-bottom: 1px solid transparent;
}

.news-article-main {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-article-image {
  overflow: hidden;
  margin-bottom: 16px;
}

.news-article-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-article:hover .news-article-image img {
  transform: scale(1.03);
}

/* Left large article image */
.news-grid-left .news-article-image img {
  height: 735px;
}

/* Right top article image */
.news-grid-right .news-article:first-child .news-article-image img {
  height: 368px;
}

/* Right bottom article image */
.news-grid-right .news-article:last-child .news-article-image img {
  height: 332px;
}

.news-article-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-article-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #5b6878;
}

.news-article-info p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.news-article-date {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.news-download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #1a2332;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.news-download-link:hover {
  color: #111827;
}

.news-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #1a2332;
  color: #fff;
}

.news-download-icon svg {
  width: 15px;
  height: 15px;
}

/* ===== OLDER ARTICLES (revealed by Show More) ===== */
.news-older {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid #e5e5e5;
}

.news-older .news-article-image img {
  height: 340px;
}

/* ===== SHOW MORE BUTTON ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: #1a2332;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #111827;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 56px 0;
  background: #3d4f5f;
  color: #fff;
}

.newsletter-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  max-width: 400px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  padding: 12px 24px;
  background: #1a2332;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: #111827;
}

.newsletter-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-disclaimer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .news-hero-right {
    width: 52%;
    margin-left: -5%;
  }

  .news-hero-left {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .news-hero-content {
    flex-direction: column-reverse;
  }

  .news-hero-left,
  .news-hero-right {
    width: 100%;
  }

  .news-hero-right {
    padding-top: 0;
    margin-left: 0;
  }

  .news-hero-left {
    padding: 30px 30px 40px;
  }

  .news-hero-left h1 {
    font-size: 42px;
  }

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

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