.page-news {
  --news-aside-width: 280px;
  background: var(--c-bg);
  color: var(--c-text);
}

.page-news img {
  max-width: 100%;
  height: auto;
}

.page-news .news-hero {
  position: relative;
  padding-top: 24px;
  border-bottom: 1px solid var(--c-ink);
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-bg) 100%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-brand);
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  height: calc(100% - 12px);
  width: 6px;
  background: repeating-linear-gradient(180deg, var(--c-brand) 0 8px, transparent 8px 14px);
  opacity: .5;
  pointer-events: none;
}

.page-news .news-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 0 48px;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--c-ink);
  margin: 0 0 16px;
  max-width: 900px;
  transform: skewX(var(--skew));
  transform-origin: left center;
}

.page-news .news-hero-kicker {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--c-brand);
  margin: 0 0 12px;
}

.page-news .news-hero-marker {
  display: inline-block;
  background: var(--c-brand);
  color: var(--c-paper);
  padding: 3px 10px;
  font-size: 12px;
  margin-right: 6px;
  border-radius: 0;
}

.page-news .news-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  max-width: 640px;
  margin: 0;
}

.page-news .news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-news .news-hero-aside {
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
}

.page-news .news-hero-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.page-news .news-hero-number {
  font-family: var(--font-mono);
  font-size: clamp(52px, 10vw, 72px);
  font-weight: 700;
  line-height: .9;
  color: var(--c-ink);
}

.page-news .news-hero-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
}

.page-news .news-hero-facts {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--c-line);
}

.page-news .news-hero-facts li {
  border-bottom: 1px solid var(--c-line);
  padding: 8px 0;
  font-size: 14px;
  color: var(--c-text);
}

.page-news .news-list-section,
.page-news .news-outro-section {
  padding: var(--space-5) 0;
}

.page-news .news-subscribe-section {
  padding: var(--space-5) 0;
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.page-news .filter-panel {
  margin-top: 28px;
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  box-shadow: var(--shadow-card);
}

.page-news .filter-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 16px 20px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}

.page-news .filter-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--c-ink);
  margin: 0;
  transform: skewX(var(--skew));
}

.page-news .filter-desc {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
}

.page-news .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-line);
}

.page-news .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 2px solid var(--c-brand);
  background: var(--c-paper);
  color: var(--c-brand);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.page-news .filter-btn--square {
  border-radius: 0;
}

.page-news .filter-btn--pill {
  border-radius: 999px;
}

.page-news .filter-count {
  background: var(--c-bg);
  color: var(--c-text);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 1;
}

.page-news .filter-radio:checked + .filter-btn {
  background: var(--c-brand);
  color: var(--c-paper);
}

.page-news .filter-radio:checked + .filter-btn .filter-count {
  background: rgba(255, 255, 255, .2);
  color: var(--c-paper);
}

.page-news .filter-btn:hover {
  transform: translateY(-2px);
}

.page-news .filter-panel-body {
  padding: 20px;
}

.page-news .article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .article-item {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-brand);
  background: var(--c-paper);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s;
}

.page-news .article-item:hover {
  border-left-color: var(--c-brand);
  transform: translateX(4px);
}

.page-news .article-item:not(.article-feature) {
  border-left-width: 3px;
  border-left-color: var(--c-brand-light);
}

.page-news .article-item:not(.article-feature):hover {
  border-left-color: var(--c-brand);
}

.page-news .article-feature {
  padding: 0;
  overflow: hidden;
}

.page-news .article-feature-media {
  position: relative;
}

.page-news .article-feature-media img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.page-news .article-feature-media .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.page-news .article-feature-body {
  padding: 20px;
}

.page-news .article-editorial {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.page-news .article-num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-brand);
  line-height: 1;
}

.page-news .article-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-muted);
}

.page-news .article-item h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--c-ink);
  margin: 8px 0 10px;
  line-height: 1.35;
}

.page-news .article-feature-body h3 {
  font-size: 24px;
}

.page-news .article-item h3 a {
  color: inherit;
  text-decoration: none;
}

.page-news .article-item h3 a:hover {
  color: var(--c-brand);
}

.page-news .article-item p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
  margin: 0;
}

.page-news .article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.page-news .tag {
  display: inline-block;
  background: var(--c-brand-light);
  color: var(--c-brand-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: .02em;
}

.page-news .article-link {
  margin-left: auto;
  color: var(--c-brand);
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.page-news .article-link:hover,
.page-news .article-link:focus-visible {
  border-bottom-color: var(--c-brand);
}

.page-news .article-link::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .2s;
}

.page-news .article-item:hover .article-link::after,
.page-news .article-link:hover::after,
.page-news .article-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.page-news .editor-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 2px solid var(--c-ink);
  padding-top: 10px;
}

.page-news .editor-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--c-line);
}

.page-news .subscribe-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
  background: var(--c-brand);
  color: var(--c-paper);
  box-shadow: 8px 8px 0 rgba(26, 26, 26, .15);
}

.page-news .subscribe-info {
  padding: 28px 24px;
}

.page-news .subscribe-info h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--c-paper);
  margin: 0 0 12px;
  transform: skewX(var(--skew));
  transform-origin: left center;
}

.page-news .subscribe-info p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .92);
  margin: 0 0 16px;
}

.page-news .subscribe-points {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .subscribe-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .95);
}

.page-news .subscribe-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--c-paper);
  flex-shrink: 0;
}

.page-news .subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .subscribe-actions .btn--ghost {
  border-color: var(--c-paper);
  color: var(--c-paper);
}

.page-news .subscribe-actions .btn--ghost:hover {
  background: var(--c-paper);
  color: var(--c-brand);
}

.page-news .subscribe-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  background: rgba(0, 0, 0, .08);
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.page-news .stat-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .15);
  padding: 4px 10px;
  margin-bottom: 10px;
}

.page-news .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: var(--c-paper);
}

.page-news .stat-num--small {
  font-size: 36px;
}

.page-news .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}

.page-news .stat-divider {
  width: 32px;
  height: 2px;
  background: var(--c-paper);
  margin: 14px 0 6px;
}

.page-news .outro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.page-news .outro-card {
  position: relative;
  padding-top: 20px;
}

.page-news .outro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-ink);
}

.page-news .outro-card:nth-child(2)::before {
  background: var(--c-brand);
}

.page-news .outro-card:nth-child(3)::before {
  background: var(--c-alert);
}

.page-news .outro-card:nth-child(4)::before {
  background: var(--c-brand-dark);
}

.page-news .outro-card-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-brand);
  margin-bottom: 10px;
}

.page-news .outro-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.page-news .outro-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0;
}

.page-news .news-back-top {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--c-ink);
  color: var(--c-paper);
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
  border: 0;
  box-shadow: 0 4px 16px rgba(26, 26, 26, .2);
  transition: background .2s, transform .2s;
}

.page-news .news-back-top:hover,
.page-news .news-back-top:focus-visible {
  background: var(--c-brand);
  transform: translateY(-2px);
}

.page-news .filter-radio:checked ~ .filter-panel-body .article-item[data-cat] {
  display: grid;
}

.page-news #filter-report:checked ~ .filter-panel-body .article-item:not([data-cat="report"]),
.page-news #filter-data:checked ~ .filter-panel-body .article-item:not([data-cat="data"]),
.page-news #filter-notice:checked ~ .filter-panel-body .article-item:not([data-cat="notice"]),
.page-news #filter-guide:checked ~ .filter-panel-body .article-item:not([data-cat="guide"]) {
  display: none;
}

.page-news a:focus-visible,
.page-news .filter-radio:focus-visible + .filter-btn {
  outline: 3px solid var(--c-brand);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1fr) var(--news-aside-width);
    gap: 48px;
  }

  .page-news .news-hero-aside {
    border-top: 0;
    border-left: 4px solid var(--c-brand);
    padding-top: 0;
    padding-left: 24px;
  }

  .page-news .article-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }

  .page-news .article-feature-body {
    padding: 24px;
  }

  .page-news .article-item:not(.article-feature) {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .page-news .article-item:not(.article-feature) .editor-thumb {
    grid-column: 2;
    max-width: 100%;
  }

  .page-news .subscribe-panel {
    grid-template-columns: 1.4fr 1fr;
  }

  .page-news .subscribe-info {
    padding: 40px 44px;
  }

  .page-news .subscribe-stat {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .2);
  }

  .page-news .outro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .page-news .article-item:not(.article-feature) {
    grid-template-columns: 110px minmax(0, 1fr) 200px;
  }

  .page-news .article-item:not(.article-feature) .editor-thumb {
    grid-column: 3;
    margin-top: 0;
  }

  .page-news .outro-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
