.news-page,
.news-detail-page {
  background: var(--canvas);
  color: var(--ink);
  min-height: 100vh;
}

.news-eyebrow {
  margin: 0 0 16px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-list-section,
.news-article-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.news-page-head,
.news-article-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.news-page-head h1,
.news-article-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.news-page-head p,
.news-article-header > p {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.news-tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--ink-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.news-tab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.news-page-button {
  min-width: 104px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  border-radius: 9999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
}

.news-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.news-page-status {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-section-title {
  margin: 0 0 28px;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.news-card img,
.news-link-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-media {
  aspect-ratio: 16 / 10;
  background: var(--canvas-soft);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.news-card h2,
.news-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.news-card p,
.news-link-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.news-card-more {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.news-article-body {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.82;
}

.news-article-body p {
  margin: 0 0 22px;
}

.news-article-image {
  overflow: hidden;
  margin: 32px 0;
  border-radius: 8px;
  background: var(--canvas-soft);
}

.news-article-image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 30px;
}

.news-sidebar h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.news-sidebar-group {
  display: grid;
  gap: 14px;
}

.news-link-list {
  display: grid;
  gap: 14px;
}

.news-link-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
}

.news-link-card-media {
  overflow: hidden;
  border-radius: 6px;
  background: var(--canvas-soft);
  aspect-ratio: 1 / 1;
}

.news-link-card h3 {
  margin: 0 0 6px;
  font-size: 0.94rem;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 840px) {
  .news-list-section,
  .news-article-section {
    width: min(100% - 32px, 1120px);
    padding: 56px 0 72px;
  }

  .news-article-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .news-pagination {
    justify-content: space-between;
  }

  .news-page-button {
    min-width: 92px;
  }

  .news-sidebar {
    position: static;
  }
}
