/* News list page */
.news-list-header {
  text-align: center;
  margin-bottom: 56px;
}
.news-list-header .section-en { margin-bottom: 12px; }
.news-list--full { max-width: 800px; margin: 0 auto; }

/* News page styles */
.news-page { padding-top: var(--header-h); }
.news-page .header__logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news-page .header__nav-link { color: var(--text-mid); }

.news-main {
  min-height: 70vh;
  padding: 60px 0 100px;
}

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 48px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.news-back svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.news-back:hover { color: var(--blue); gap: 10px; }
.news-back:hover svg { transform: translateX(-4px); }

.news-article__header { margin-bottom: 40px; }
.news-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.news-article__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray);
}

.news-article__body {
  max-width: 720px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 2;
}
.news-article__body p { margin-bottom: 1.6em; }
.news-article__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article__body a:hover { color: var(--cyan); }
