/* News section – heading + VIEW ALL button, 3 article cards */

.news_section {
  background-color: #fff;
}

.news_section .news_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.news_section .news_heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #002446;
  margin: 0;
  font-family: inherit;
}

.news_section .news_view_all_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #002446;
  background: #FFDE00;
  border-radius: 500px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.news_section .news_view_all_btn:hover {
  background: #002446;
  color: #fff;
}

.news_section .news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 32px);
}

.news_section .news_card {
  background: #F5F6F8;
  border-radius: 0;
  overflow: hidden;
}

.news_section .news_card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news_section .news_card_image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}

.news_section .news_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_section .news_card_body {
  padding: 3rem 2rem 2rem 3rem;
}

.news_section .news_card_date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.news_section .news_date_icon {
  flex-shrink: 0;
  color: #002446;
}

.news_section .news_card_sep {
  display: block;
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 12px;
}

.news_section .news_card_title {
  font-size: 20px;
  font-weight: 700;
  color: #002446;
  margin: 0 0 10px;
  line-height: 1.3;
  font-family: inherit;
  letter-spacing: unset!important;
  text-decoration: none!important;
}

.news_section .news_card_link:hover .news_card_title {
  text-decoration: underline;
}

.news_section .news_card_excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: #3F3F3F;
  margin-bottom: 2rem!important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news_section .news_card_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1B1788;
}

.news_section .news_arrow {
  flex-shrink: 0;
}

.news_section .news_card_link:hover .news_card_cta {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .news_section .news_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .news_section .news_header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news_section .news_card_title {
    font-size: 16px;
  }
}
