/* ============================================================
   NEWS archive page — extends shared chassis (service.css)
   ============================================================ */

/* ----- Hero ----- */
.news-hero {
  background: var(--white);
  padding: 200px 0 100px;
  border-bottom: 1px solid var(--ink-200);
  position: relative;
}
.news-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--is-orange);
}
.news-breadcrumb {
  font-family: var(--font-latin);
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 14px;
}
.news-breadcrumb a { color: var(--ink-500); text-decoration: none; transition: color 200ms; }
.news-breadcrumb a:hover { color: var(--is-orange); }
.news-breadcrumb .sep { color: var(--ink-300); }

.news-hero-eyebrow {
  font-family: var(--font-latin);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--is-orange);
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 2px solid var(--is-orange);
  display: inline-block;
  margin-bottom: 32px;
}
.news-hero-title {
  font-family: var(--font-jp);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 32px 0;
  color: var(--is-navy);
}
.news-hero-lede {
  font-family: var(--font-jp);
  font-size: 18px; line-height: 1.9;
  color: var(--ink-700);
  max-width: 720px;
  margin: 0;
}

/* ----- List ----- */
.news-section {
  background: var(--paper);
  padding: 100px 0 160px;
}
.news-year {
  margin-bottom: 80px;
}
.news-year:last-child { margin-bottom: 0; }
.news-year-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: baseline;
  margin-bottom: 16px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid var(--is-navy);
}
.news-year-num {
  font-family: var(--font-latin);
  font-size: 64px; font-weight: 200;
  color: var(--is-navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.news-year-meta {
  font-family: var(--font-latin);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--ink-500);
  text-transform: uppercase;
  text-align: right;
}

.news-list {
  display: flex; flex-direction: column;
}
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-200);
  text-decoration: none;
  color: inherit;
  transition: padding 220ms ease;
  position: relative;
}
.news-item::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--is-orange);
  transition: width 320ms ease;
}
.news-item:hover {
  padding-left: 16px;
}
.news-item:hover::before {
  width: 100%;
}
.news-item:hover .news-item-title { color: var(--is-orange); }
.news-item:hover .news-item-arrow { color: var(--is-orange); transform: translateX(6px); }

.news-item-meta {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.news-item-date {
  font-family: var(--font-latin);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--is-navy);
}
.news-item-cat {
  font-family: var(--font-jp);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--ink-300);
  color: var(--ink-700);
  background: var(--white);
  align-self: flex-start;
  white-space: nowrap;
}
.news-item-cat[data-cat="release"]   { color: var(--is-orange); border-color: var(--is-orange); }
.news-item-cat[data-cat="media"]     { color: var(--is-navy); border-color: var(--is-navy); }
.news-item-cat[data-cat="seminar"]   { color: var(--status-info); border-color: var(--status-info); }
.news-item-cat[data-cat="info"]      { color: var(--ink-700); border-color: var(--ink-400); }

.news-item-title {
  font-family: var(--font-jp);
  font-size: 18px; line-height: 1.6;
  font-weight: 700;
  color: var(--is-navy);
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 220ms ease;
  text-wrap: pretty;
}
.news-item-arrow {
  font-family: var(--font-latin);
  font-size: 16px;
  color: var(--ink-400);
  text-align: right;
  transition: transform 220ms ease, color 220ms ease;
}

/* ----- Mobile ----- */
@media (max-width: 1024px) {
  .news-year-head { grid-template-columns: 1fr; gap: 8px; }
  .news-year-meta { text-align: left; }
  .news-item { grid-template-columns: 1fr 40px; gap: 8px 16px; padding: 22px 0; }
  .news-item-meta { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 12px; }
  .news-item-title { grid-column: 1 / 2; font-size: 16px; }
  .news-item-arrow { grid-column: 2 / 3; align-self: center; }
}
@media (max-width: 768px) {
  .news-hero { padding: 140px 0 60px; }
  .news-breadcrumb { margin-bottom: 32px; font-size: 11px; }
  .news-hero-title { font-size: 48px; }
  .news-hero-lede { font-size: 15px; }
  .news-section { padding: 60px 0 80px; }
  .news-year { margin-bottom: 56px; }
  .news-year-num { font-size: 44px; }
  .news-item-title { font-size: 15px; line-height: 1.55; }
  .news-item-date { font-size: 13px; }
  .news-item-cat { font-size: 10px; padding: 3px 8px; }
  .news-item:hover { padding-left: 0; }
}
