.news-page-body {
  background:
    radial-gradient(circle at top left, rgba(200, 163, 64, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbf8 0%, #f3f7f4 100%);
  min-height: 100vh;
}

.news-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(200, 163, 64, 0.2), transparent 24%),
    linear-gradient(135deg, #0d2415 0%, #13462a 55%, #1a6b3c 100%);
  color: white;
  padding: 72px 0 56px;
}

.news-page-hero-inner {
  position: relative;
  z-index: 1;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 600;
}

.news-back-link:hover {
  color: white;
}

.news-page-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.news-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.news-page-hero p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.news-page-layout {
  padding: 36px 0 80px;
}

.news-spotlight-shell,
.news-archive-shell {
  margin-bottom: 30px;
}

.news-detail-panel {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.09);
}

.news-detail-media {
  min-height: 260px;
  background: linear-gradient(135deg, #123e25, #1a6b3c);
}

.news-gallery-mosaic {
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, minmax(150px, 220px));
  gap: 8px;
  padding: 8px;
}

.news-gallery-single {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.news-gallery-single-compact {
  min-height: 190px;
}

.news-gallery-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-gallery-single figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15,23,42,0.62);
  color: white;
  font-size: 0.88rem;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.news-gallery-mosaic-compact {
  height: 100%;
  grid-template-rows: repeat(2, 1fr);
  padding: 0;
}

.news-gallery-cell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18,62,37,0.22), rgba(26,107,60,0.3));
}

.news-gallery-cell-1 {
  grid-row: 1 / span 2;
}

.news-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-gallery-cell figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15,23,42,0.62);
  color: white;
  font-size: 0.88rem;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.news-gallery-overflow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #123e25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
}

.news-detail-body {
  padding: 32px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.news-detail-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.news-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.news-detail-excerpt {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.news-detail-content {
  white-space: pre-line;
  font-size: 0.98rem;
  line-height: 1.95;
  color: #2f3c37;
}

.news-detail-empty {
  padding: 50px 24px;
  text-align: center;
  color: var(--text-muted);
}

.news-archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.news-archive-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.news-archive-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
  border-color: rgba(26, 107, 60, 0.22);
}

.news-archive-image {
  height: 190px;
  background: linear-gradient(135deg, rgba(26,107,60,0.18), rgba(200,163,64,0.2));
  overflow: hidden;
}

.news-archive-content {
  padding: 20px;
}

.news-archive-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.news-archive-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.news-archive-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .news-page-hero {
    padding: 58px 0 42px;
  }

  .news-detail-body {
    padding: 22px 18px;
  }

  .news-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(120px, 180px));
  }

  .news-gallery-cell-1 {
    grid-row: auto;
  }

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