.news-hero {
  background: var(--color-cream);
}

.news-hero .site-container {
  padding: 78px 0 62px;
}

.news-hero h1 {
  margin-bottom: 18px;
}

.news-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.news-index {
  padding: 42px 0 82px;
  background: #ffffff;
}

.news-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.news-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--color-navy);
  background: #ffffff;
  color: var(--color-navy);
}

.news-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-ink);
  font-size: 1rem;
}

.news-search input::placeholder {
  color: var(--color-muted);
}

.news-select {
  display: grid;
  gap: 6px;
}

.news-select span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-select select {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--color-navy);
  border-radius: 0;
  background: #ffffff;
  color: var(--color-navy);
  font-weight: 800;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.news-filter {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: #ffffff;
  color: var(--color-navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.news-filter:hover,
.news-filter:focus-visible,
.news-filter.active {
  border-color: var(--color-red);
  background: var(--color-red);
  color: #ffffff;
}

.news-source-note {
  margin: 10px 0 28px;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-line);
  list-style: none;
}

.news-row {
  border-bottom: 1px solid var(--color-line);
}

.news-detail summary {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
}

.news-detail summary::-webkit-details-marker {
  display: none;
}

.news-detail summary:hover .news-title,
.news-detail summary:focus-visible .news-title {
  color: var(--color-red);
}

.news-meta {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-title {
  color: var(--color-navy);
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
  transition: color 160ms ease;
}

.news-read {
  justify-self: end;
  min-width: 112px;
  color: var(--color-red);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.news-body {
  max-width: 870px;
  padding: 0 0 34px min(29%, 250px);
}

.news-body p {
  margin-bottom: 18px;
  color: var(--color-ink);
  font-size: 1.02rem;
  line-height: 1.85;
}

.news-body p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.news-empty {
  padding: 36px 0;
  color: var(--color-muted);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body[data-language="ja"] .news-title {
  font-family: "Noto Serif JP", "Instrument Serif", Georgia, serif;
}

body[data-language="ko"] .news-title {
  font-family: "Noto Serif KR", "Instrument Serif", Georgia, serif;
}

@media (max-width: 840px) {
  .news-tools {
    grid-template-columns: 1fr;
  }

  .news-detail summary {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .news-read {
    justify-self: start;
    text-align: left;
  }

  .news-body {
    padding-left: 0;
  }

  .news-title {
    font-size: 1.55rem;
  }
}
