/* Home page — Latest News section */
.home-news-section {
  padding: 0 0 80px;
  background: #fff;
  position: relative;
}

.home-news-section .hn-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.home-news-section .hn-topbar{
  width: 100%;
  background: #0b2a5a;
  text-align: center;
  padding: 22px 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 26px;
}

.home-news-section .hn-topbar__latest,
.home-news-section .hn-topbar__updates,
.home-news-section .hn-topbar__news{
  color: inherit;
}

.home-news-section .news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.home-news-section .header-left {
  flex: 1;
  min-width: 300px;
}

.home-news-section .home-news-sec-hdr .h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: #0d1b2a;
  margin-bottom: 0;
}

.home-news-section .home-news-sec-hdr .divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #e8620a, #f5c518);
  margin: 14px 0 0;
  border-radius: 2px;
}

.home-news-section .view-all-btn {
  background: #0c2c5c;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}

.home-news-section .view-all-btn:hover {
  background: #e87722;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 119, 34, 0.4);
  color: #fff;
}

.home-news-section .view-all-btn i {
  transition: transform 0.3s ease;
}

.home-news-section .view-all-btn:hover i {
  transform: translateX(5px);
}

.home-news-section .news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 25px;
  height: 720px;
}

.home-news-section .news-card.featured {
  grid-row: 1 / 4;
  grid-column: 1;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.home-news-section .news-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(12, 44, 92, 0.2);
}

.home-news-section .news-card.featured.is-fading .featured-image img,
.home-news-section .news-card.featured.is-fading .hn-featured-title {
  opacity: 0;
}

.home-news-section .featured-image {
  position: relative;
  width: 100%;
  height: 68%;
  overflow: hidden;
}

.home-news-section .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.home-news-section .news-card.featured:hover .featured-image img {
  transform: scale(1.05);
}

.home-news-section .featured-body {
  padding: 28px 32px 32px;
  height: 32%;
  display: flex;
  align-items: flex-start;
}

.home-news-section .hn-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: #0c2c5c;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  transition: opacity 0.5s ease, color 0.3s ease;
}

.home-news-section .news-card.featured:hover .hn-featured-title {
  color: #e87722;
}

.home-news-section .news-card.small {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.home-news-section .news-card.small:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(12, 44, 92, 0.15);
}

.home-news-section .small-image {
  position: relative;
  width: 100%;
  height: 58%;
  overflow: hidden;
}

.home-news-section .small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.home-news-section .news-card.small:hover .small-image img {
  transform: scale(1.06);
}

.home-news-section .small-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.home-news-section .hn-small-title {
  font-size: 0.95rem;
  color: #0c2c5c;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  transition: color 0.3s ease;
}

.home-news-section .news-card.small:hover .hn-small-title {
  color: #e87722;
}

@media (max-width: 1024px) {
  .home-news-section .news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .home-news-section .news-card.featured {
    grid-row: span 1;
    grid-column: span 2;
    height: 480px;
  }
  .home-news-section .featured-image {
    height: 65%;
  }
  .home-news-section .news-card.small {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .home-news-section .news-grid {
    grid-template-columns: 1fr;
  }
  .home-news-section .news-card.featured {
    grid-column: span 1;
    height: auto;
    min-height: 420px;
  }
  .home-news-section .news-card.small {
    height: 260px;
  }
  .home-news-section .news-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
