/* ─────────────────────────────────────────────
   NEWS page — additional layout
   ───────────────────────────────────────────── */

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(336px, 38vw, 528px);
  padding: calc(clamp(56px, 7vw, 96px) + 63px) var(--pad-x) clamp(56px, 7vw, 96px);
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background: url("../img/vi.jpg") center/cover no-repeat;
}
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,11,9,0.78) 0%, rgba(12,11,9,0.58) 45%, rgba(12,11,9,0.30) 100%);
}
.page-hero__dummy {
  position: absolute;
  left: 50%; top: calc(50% + 31px);
  transform: translate(-50%, -50%);
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,.96);
  padding: 12px 22px;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}
.page-hero .container { width: 100%; max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
.page-hero__row {
  display: flex; align-items: center; justify-content: center; text-align: center; gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #ffffff;
  display: flex; flex-direction: column; align-items: center; gap: clamp(4px, 0.5vw, 7px);
}
.page-hero__title .ja {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 46px);
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.1;
}
.page-hero__title .en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
}
.page-hero::after { display: none; }

/* ─────────────────────────────────────────────
   News listing
   ───────────────────────────────────────────── */
.news-page.section { padding-block: var(--rhythm); }
.news-page__head { margin-bottom: clamp(28px, 4vw, 48px); }
.news-page__head .section-title { margin-top: 8px; }
.news-page__lead {
  margin-top: clamp(14px, 1.8vw, 20px);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  max-width: 640px;
}

.news-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: clamp(28px, 4vw, 56px);
  padding: clamp(26px, 3vw, 38px) 0;
  align-items: start;
}
.news-row + .news-row { border-top: 1px solid var(--hair-2); }

.news-row__meta {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 3px;
}
.news-row__date {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--mid);
}

.news-row__body { display: flex; flex-direction: column; gap: 12px; }
.news-row__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(16px, 1.7vw, 20px);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--ink);
}
.news-row__text {
  font-size: 13.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  max-width: 720px;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .page-hero { padding-top: calc(clamp(44px, 8vw, 72px) + 63px); padding-bottom: clamp(44px, 8vw, 72px); }
  .page-hero__row { flex-direction: column; align-items: center; gap: 20px; }
  .news-row {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .news-row__meta { flex-direction: row; align-items: center; gap: 14px; }
}
