.news-page {
  background: #f2f3f5;
  color: #111;
}

.news-page .topbar {
  position: sticky;
  top: 0;
  z-index: 50;
}

.news-hero {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
  border-bottom: 1px solid #d5dbe2;
}

.news-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(103deg, rgba(0, 0, 0, 0.78) 14%, rgba(0, 0, 0, 0.35) 74%);
}

.news-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 56vh;
  display: flex;
  align-items: center;
}

.news-hero-card {
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.68);
  padding: 1.8rem;
}

.news-hero-card h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.95;
  margin-bottom: 0.7rem;
}

.news-hero-card p {
  color: #dde2e7;
  line-height: 1.75;
}

.news-section {
  padding: 3rem 0 3.2rem;
}

.news-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 14px;
  overflow: hidden;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 1rem;
}

.news-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5662;
  margin-bottom: 0.45rem;
}

.news-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  margin-bottom: 0.45rem;
}

.news-card p {
  color: #2f3945;
  line-height: 1.65;
}

.news-link {
  display: inline-block;
  margin: 0.25rem 1rem 1rem;
  color: #0f1215;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-hero,
  .news-hero-inner {
    min-height: 48vh;
  }

  .news-hero-card {
    padding: 1.2rem;
  }
}
