.page-news {
  overflow-x: hidden;
  padding-bottom: 72px;
}

.page-news .crumb-list {
  margin-top: 20px;
}

.page-news .news-masthead {
  padding-top: 36px;
  padding-bottom: 28px;
  display: grid;
  gap: 10px;
}

.page-news .news-masthead h1 {
  font-family: var(--font-head);
  font-size: clamp(46px, 9vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink);
}

.page-news .news-masthead__desc {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
}

.page-news .news-masthead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

.page-news .news-masthead__meta span::before {
  content: "●";
  color: var(--neon);
  margin-right: 8px;
  font-size: 8px;
  vertical-align: middle;
}

.page-news .news-hero {
  display: grid;
  border: 1px solid var(--border);
  background: var(--ink);
  margin-bottom: 48px;
  position: relative;
}

.page-news .news-hero__media {
  display: block;
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.page-news .news-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-news .news-hero__body {
  padding: 28px 24px;
  color: #fff;
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
}

.page-news .news-hero__body::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 64px;
  height: 4px;
  background: var(--gold);
}

.page-news .news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-news .news-hero__read {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
}

.page-news .news-hero__body .tag-chip {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.page-news .news-hero__body .tag-chip--gold {
  border-color: var(--gold);
  color: var(--gold);
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  color: #fff;
}

.page-news .news-hero__excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 66ch;
}

.page-news .news-hero__body .btn--ghost {
  border: 1px solid var(--neon);
  color: var(--neon);
  justify-self: start;
}

.page-news .news-hero__body .btn--ghost:hover {
  background: var(--neon);
  color: var(--ink);
  border-color: var(--neon);
}

@media (min-width: 900px) {
  .page-news .news-hero {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: stretch;
  }

  .page-news .news-hero__media {
    min-height: 460px;
  }

  .page-news .news-hero__body {
    padding: 40px 36px;
  }
}

.page-news .news-magazine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 900px) {
  .page-news .news-magazine {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
  }
}

.page-news .news-index__inner {
  position: relative;
  background: var(--ink);
  padding: 28px 22px;
  overflow: hidden;
}

.page-news .news-index__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon) 0 72%, var(--gold) 72% 100%);
}

.page-news .news-index__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, transparent 50%, var(--gold) 50%);
}

@media (min-width: 1200px) {
  .page-news .news-index__inner {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

.page-news .news-index__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 18px;
  padding-right: 40px;
}

.page-news .news-index__list {
  display: grid;
  gap: 10px;
}

.page-news .news-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: transparent;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-news .news-filter-btn span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
}

.page-news .news-filter-btn:hover {
  border-color: var(--neon);
  transform: translateX(3px);
}

.page-news .news-filter-btn.is-active {
  background: var(--neon);
  border-color: var(--neon);
  color: var(--ink);
}

.page-news .news-filter-btn.is-active span {
  color: var(--ink);
}

.page-news .news-index__section {
  margin-top: 30px;
}

.page-news .news-index__subtitle {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon);
  margin: 0 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-news .news-changelog {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-changelog li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.page-news .news-changelog__ver {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  background: rgba(0, 229, 160, 0.12);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

.page-news .news-issues {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-issues a {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.page-news .news-issues a:hover {
  color: var(--neon);
  border-color: var(--neon);
}

.page-news .news-feed {
  min-width: 0;
}

.page-news .news-panel {
  display: block;
}

.page-news .news-feed__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}

.page-news .news-feed__title {
  font-family: var(--font-head);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.page-news .news-feed__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.page-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .page-news .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .page-news .news-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  }

  .page-news .news-card--wide .news-card__media {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .page-news .news-card--offset {
    margin-top: 36px;
  }
}

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-news .news-card:nth-child(even) {
  border-left-color: var(--gold);
}

.page-news .news-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon);
  border-left-color: var(--neon);
  box-shadow: var(--shadow);
}

.page-news .news-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.page-news .news-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}

.page-news .news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.page-news .news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 20px;
}

.page-news .news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.page-news .news-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.page-news .news-card__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.page-news .news-card__more:hover {
  color: var(--neon);
  border-color: var(--neon);
}

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

.page-news .news-panel-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  transition: border-color 0.25s, transform 0.25s;
}

.page-news .news-panel-item:hover {
  border-color: var(--neon);
  transform: translateX(5px);
}

.page-news .news-panel-item__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.page-news .news-panel-item__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.page-news .news-panel-item__title a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.page-news .news-panel-item__title a:hover {
  color: var(--neon);
}

.page-news .news-picks {
  margin-top: 64px;
  padding: 56px 0;
  background: radial-gradient(circle at 88% 12%, rgba(0, 229, 160, 0.14), transparent 42%), var(--ink);
}

.page-news .news-picks__inner {
  display: grid;
  gap: 32px;
}

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

.page-news .news-picks__head h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.page-news .news-picks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .page-news .news-picks__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.page-news .news-pick {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-news .news-pick:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon);
  transform: translateY(-4px);
}

.page-news .news-pick__num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.page-news .news-pick__body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.page-news .news-pick__body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.page-news .news-pick__body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.page-news .news-pick__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.page-news .news-pick__foot a {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 160, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.page-news .news-pick__foot a:hover {
  border-color: var(--neon);
}

.page-news .news-context-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .page-news .news-context-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .page-news .news-context-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-news .news-context-nav__item {
  display: grid;
  gap: 6px;
  padding: 20px 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.page-news .news-context-nav__item span {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.page-news .news-context-nav__item small {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.page-news .news-context-nav__item:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.page-news .news-context-nav__item:hover span,
.page-news .news-context-nav__item:hover small {
  color: #fff;
}
