/* Overview image — balanced crop, no float-card clash */
.overview-grid {
  align-items: start !important;
  gap: 2.5rem !important;
  max-width: 1100px !important;
}

.overview-image-wrap {
  position: relative;
  max-height: none !important;
  min-height: 320px !important;
  overflow: hidden;
  border-radius: 18px;
}

.overview-image-wrap .overview-image-real {
  width: 100% !important;
  height: 100% !important;
  min-height: 320px !important;
  max-height: 420px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.floating-card {
  z-index: 2;
}

/* ─── News cards — equal width, equal height, aligned bottoms ─── */
.section-news .news-grid.grid-4-row,
.news-grid.grid-4-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.25rem !important;
  align-items: stretch !important;
}

.section-news .news-card,
.news-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  margin: 0 !important;
  transform: none !important;
}

.section-news .news-card-image,
.news-card-image {
  display: block !important;
  flex: 0 0 auto !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
}

.section-news .news-card-image img,
.section-news .news-card-img,
.news-card-image img,
.news-card-img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transform: none !important;
}

.section-news .news-card-content,
.news-card-content {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 1rem 1.1rem 1.25rem !important;
  background: #ffffff !important;
}

.section-news .news-card-content time,
.news-card-content time {
  display: inline-block;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a3d63;
  background: #e8f0fa;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 0.45rem;
}

.section-news .news-card-content h3,
.news-card-content h3 {
  margin: 0 0 0.5rem !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  min-height: 2.7em;
}

.section-news .news-card-content p,
.news-card-content p {
  margin: 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Leadership message alignment */
.leadership-grid {
  align-items: center !important;
}

.leadership-photo {
  overflow: hidden;
  border-radius: 16px;
}

.leadership-photo img,
.leadership-img {
  width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* Facilities showcase caption under image */
.facilities-showcase-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.facilities-showcase-desc {
  margin: 0 !important;
  flex: 1 1 280px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .section-news .news-grid.grid-4-row,
  .news-grid.grid-4-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr !important;
  }

  .overview-image-wrap .overview-image-real {
    min-height: 240px !important;
    max-height: 280px !important;
  }

  .leadership-grid {
    grid-template-columns: 1fr !important;
  }

  .section-news .news-grid.grid-4-row,
  .news-grid.grid-4-row {
    grid-template-columns: 1fr !important;
  }

  .section-news .news-card-content h3,
  .news-card-content h3 {
    min-height: 0;
  }
}

/* ─── Hero multi-image scrolling slider ─── */
.hero-has-slider .hero-gwh-media.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease, visibility 1.1s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide .hero-gwh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  transition: transform 6.5s ease;
}

.hero-slide.is-active .hero-gwh-img {
  transform: scale(1);
}

.hero-has-slider .hero-gwh-img {
  animation: none !important;
}

.hero-gwh-overlay {
  z-index: 2;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .hero-slider-dots {
    bottom: 0.85rem;
  }
}

/* Footer brand — match screenshot font hierarchy */
.footer-brand .logo-main {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  line-height: 1.15 !important;
  color: #ffffff !important;
}

.footer-brand .logo-sub {
  display: block !important;
  margin-top: 0.2rem !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.92) !important;
}
