.news-year-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.news-year-heading h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.news-year-heading .eyebrow {
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-year-heading p {
  max-width: 480px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-update-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 15px 38px rgba(25, 68, 48, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(25, 68, 48, 0.13);
}

.news-update-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-update-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 38, 22, 0.38));
}

.news-update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-update-card:hover .news-update-image img { transform: scale(1.04); }

.news-update-category {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 91, 55, 0.9);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.news-update-content {
  padding: 1.25rem 1.25rem 1.4rem;
}

.news-update-content time {
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-update-content h2 {
  margin: 0.65rem 0 0.7rem;
  font-size: 1.15rem;
  line-height: 1.35;
}

.news-update-content h2 a { color: var(--heading-color); }
.news-update-content h2 a:hover { color: var(--accent-color); }

.news-update-content p {
  margin: 0 0 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.86rem;
  line-height: 1.65;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
}

.news-read-more i { transition: transform 0.2s ease; }
.news-read-more:hover i { transform: translateX(4px); }

.news-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.news-list-footer p { margin: 0; color: #68776f; font-size: 0.8rem; }
.news-list-footer button { border: 0; border-radius: 999px; padding: 0.75rem 1.25rem; color: #fff; background: var(--accent-color); font-weight: 700; }

.news-archive-heading { margin: 4rem 0 2rem; padding-top: 2rem; border-top: 1px solid rgba(0, 0, 0, 0.08); }

.dynamic-news-detail { background: #f8faf7; }
.news-article { width: min(900px, 100%); margin: 0 auto; }
.news-article-header { text-align: center; margin-bottom: 2.25rem; }
.news-article-category { display: inline-block; padding: 0.45rem 0.75rem; border-radius: 999px; color: #fff; background: var(--accent-color); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.news-article-header h1 { margin: 1rem auto; max-width: 870px; font-size: clamp(2rem, 5vw, 3.65rem); line-height: 1.08; letter-spacing: -0.045em; }
.news-article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem; color: #6b7971; font-size: 0.8rem; }
.news-article-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.news-article-meta i { color: var(--accent-color); }
.news-article-visual { margin: 0 0 2.5rem; overflow: hidden; border-radius: 22px; aspect-ratio: 16 / 8.5; box-shadow: 0 24px 60px rgba(25, 68, 48, 0.13); }
.news-article-visual img { width: 100%; height: 100%; object-fit: cover; }
.news-article-body { max-width: 760px; margin: 0 auto; padding: clamp(1.4rem, 4vw, 3rem); border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(25, 68, 48, 0.06); }
.news-article-body p { margin: 0 0 1.35rem; font-size: 1.02rem; line-height: 1.85; }
.news-article-body p:first-child { font-size: 1.18rem; color: var(--heading-color); }
.news-article-body a { display: inline-flex; align-items: center; gap: 0.35rem; overflow-wrap: anywhere; font-weight: 600; }
.news-article-body .article-resource { padding: 0.9rem 1rem; border-left: 3px solid var(--accent-color); background: #f3f8f4; font-size: 0.88rem; }
.news-article-footer { max-width: 760px; margin: 1.5rem auto 0; }
.news-article-footer a { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; }
.news-article-gallery { max-width: 760px; margin: 1.5rem auto 0; padding: 1.35rem; border-radius: 18px; background: #eef6f0; }
.news-article-gallery h2 { margin: 0 0 0.9rem; font-size: 1.1rem; }
.news-article-gallery > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.8rem; }
.news-article-gallery figure { margin: 0; overflow: hidden; border-radius: 12px; background: #fff; }
.news-article-gallery img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.news-article-error { padding: 5rem 1rem; text-align: center; }
.news-article-error i { color: var(--accent-color); font-size: 3rem; }
.news-article-error h1 { margin: 1rem 0 0.5rem; }

@media (max-width: 767px) {
  .news-year-heading { align-items: flex-start; flex-direction: column; }
  .news-year-heading h2 { font-size: 2rem; }
  .news-list-footer { align-items: stretch; flex-direction: column; text-align: center; }
  .news-list-footer button { width: 100%; }
  .news-update-card:hover { transform: none; }
  .news-article-header { text-align: left; }
  .news-article-meta { justify-content: flex-start; gap: 0.65rem 1rem; }
  .news-article-visual { margin-inline: -0.25rem; border-radius: 15px; aspect-ratio: 4 / 3; }
  .news-article-body { padding: 1.25rem; }
  .news-article-body p { font-size: 0.94rem; line-height: 1.75; }
  .news-article-body p:first-child { font-size: 1.03rem; }
  .news-article-gallery > div { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .news-update-card,
  .news-update-image img,
  .news-read-more i { transition: none; }
}
