.page-news {
  background-image:
    linear-gradient(rgba(77, 157, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 157, 224, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative;
}

.page-news .breadcrumb {
  padding-top: 32px;
}

.page-news .news-hero {
  position: relative;
  padding: 48px 0 40px;
  margin-bottom: 32px;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  clip-path: polygon(30% 0, 100% 0, 100% 100%);
  opacity: 0.22;
  z-index: 0;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 16px 0 18px;
  max-width: 860px;
  position: relative;
  padding-left: 18px;
  text-shadow: 0 0 24px rgba(230, 57, 70, 0.14);
}

.page-news .news-hero h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.06em;
  bottom: 0.06em;
  width: 6px;
  background: linear-gradient(to bottom, var(--color-red), var(--color-orange));
  transform: skewX(-14deg);
}

.page-news .news-hero__desc {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 28px;
}

.page-news .news-hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

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

.page-news .news-hero__stat .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-green);
}

.page-news .news-hero__stat-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.page-news .news-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 64px;
}

.page-news .news-filter__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-news .news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.page-news .news-sidebar__panel,
.page-news .news-widget {
  background: var(--color-panel);
  border: 1px solid rgba(77, 157, 224, 0.18);
  border-radius: 6px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.page-news .news-sidebar__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  margin: 0 0 14px;
  border-bottom: 2px solid var(--color-red);
  display: inline-block;
}

.page-news .news-filter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-filter__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  cursor: pointer;
  font-size: 0.93rem;
  color: var(--color-text);
  border-left: 3px solid transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.page-news .news-filter__label:hover {
  background: rgba(77, 157, 224, 0.08);
  border-left-color: var(--color-blue);
}

.page-news .news-filter__label em {
  font-family: var(--font-data);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--color-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 10px;
}

.page-news .news-layout:has(#cat-all:checked) .news-filter__label--all,
.page-news .news-layout:has(#cat-report:checked) .news-filter__label--report,
.page-news .news-layout:has(#cat-update:checked) .news-filter__label--update,
.page-news .news-layout:has(#cat-notice:checked) .news-filter__label--notice {
  background: rgba(230, 57, 70, 0.14);
  border-left-color: var(--color-red);
  color: var(--color-red);
  font-weight: 700;
}

.page-news .news-layout:has(#cat-all:checked) .news-filter__label--all em,
.page-news .news-layout:has(#cat-report:checked) .news-filter__label--report em,
.page-news .news-layout:has(#cat-update:checked) .news-filter__label--update em,
.page-news .news-layout:has(#cat-notice:checked) .news-filter__label--notice em {
  color: var(--color-red);
  background: rgba(230, 57, 70, 0.15);
}

.page-news .news-layout:has(#cat-report:checked) .news-section--update,
.page-news .news-layout:has(#cat-report:checked) .news-section--notice,
.page-news .news-layout:has(#cat-update:checked) .news-section--report,
.page-news .news-layout:has(#cat-update:checked) .news-section--notice,
.page-news .news-layout:has(#cat-notice:checked) .news-section--report,
.page-news .news-layout:has(#cat-notice:checked) .news-section--update {
  display: none;
}

.page-news .news-widget__img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 14px;
  object-fit: cover;
}

.page-news .news-widget__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.page-news .news-widget--highlight {
  background: linear-gradient(145deg, rgba(230, 57, 70, 0.12), var(--color-panel));
  border-left: 3px solid var(--color-red);
}

.page-news .news-widget__time {
  font-size: 2.6rem;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 10px;
}

.page-news .news-widget .btn {
  margin-top: 16px;
  width: 100%;
}

.page-news .news-timeline {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.page-news .news-section {
  position: relative;
  padding-left: 18px;
}

.page-news .news-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-red), var(--color-blue));
  border-radius: 2px;
  opacity: 0.35;
}

.page-news .news-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 22px;
  padding-left: 4px;
}

.page-news .news-section__num {
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--color-red);
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 3px 10px;
  border-radius: 4px;
  transform: skewX(-8deg);
  display: inline-block;
}

.page-news .news-card {
  position: relative;
  background: var(--color-panel);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
  border-top: 4px solid var(--color-muted);
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.page-news .news-card--report {
  border-top-color: var(--color-red);
}

.page-news .news-card--update {
  border-top-color: var(--color-blue);
}

.page-news .news-card--notice {
  border-top-color: var(--color-orange);
}

.page-news .news-card__thumb {
  overflow: hidden;
}

.page-news .news-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-news .news-card:hover .news-card__img {
  transform: scale(1.03);
}

.page-news .news-card__body {
  padding: 18px 20px 20px;
}

.page-news .news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.page-news .news-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-news .news-card--report .news-card__tag {
  background: rgba(230, 57, 70, 0.15);
  color: var(--color-red);
  border: 1px solid rgba(230, 57, 70, 0.35);
}

.page-news .news-card--update .news-card__tag {
  background: rgba(77, 157, 224, 0.15);
  color: var(--color-blue);
  border: 1px solid rgba(77, 157, 224, 0.35);
}

.page-news .news-card--notice .news-card__tag {
  background: rgba(244, 162, 97, 0.15);
  color: var(--color-orange);
  border: 1px solid rgba(244, 162, 97, 0.35);
}

.page-news .news-card__time {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--color-muted);
}

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  line-height: 1.25;
  margin: 0 0 10px;
}

.page-news .news-card__desc {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.page-news .news-card__footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .news-card__link {
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--ease), gap var(--ease);
}

.page-news .news-card__link:hover {
  color: var(--color-green);
  gap: 8px;
}

.page-news .news-details {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.page-news .news-details summary {
  cursor: pointer;
  color: var(--color-blue);
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
  transition: color var(--ease);
}

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

.page-news .news-details summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
  border: 1px solid var(--color-blue);
  border-radius: 3px;
  margin-right: 8px;
  font-family: var(--font-data);
  font-size: 0.9rem;
  transition: background var(--ease), color var(--ease);
}

.page-news .news-details[open] summary::before {
  content: "−";
  background: var(--color-blue);
  color: var(--color-bg);
}

.page-news .news-details__list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .news-details__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--color-text);
  line-height: 1.6;
}

.page-news .news-details__list li::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--color-green);
  font-family: var(--font-data);
}

.page-news .news-update-hero {
  margin-bottom: 22px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid rgba(77, 157, 224, 0.22);
}

.page-news .news-update-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news .news-update-hero__desc {
  padding: 12px 16px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: 1px solid rgba(77, 157, 224, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-news .news-notice-banner {
  margin-bottom: 22px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(244, 162, 97, 0.28);
}

.page-news .news-notice-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news .news-help-strip {
  margin-top: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(155, 93, 229, 0.1), rgba(11, 18, 32, 0.4));
  border: 1px solid rgba(155, 93, 229, 0.28);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.page-news .news-help-strip__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text);
}

@media (max-width: 899px) {
  .page-news .news-filter {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .page-news .news-filter__label {
    padding: 8px 12px;
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
  }

  .page-news .news-filter__label:hover {
    border-bottom-color: var(--color-blue);
  }

  .page-news .news-layout:has(#cat-all:checked) .news-filter__label--all,
  .page-news .news-layout:has(#cat-report:checked) .news-filter__label--report,
  .page-news .news-layout:has(#cat-update:checked) .news-filter__label--update,
  .page-news .news-layout:has(#cat-notice:checked) .news-filter__label--notice {
    border-bottom-color: var(--color-red);
    background: rgba(230, 57, 70, 0.12);
  }

  .page-news .news-filter__label em {
    margin-left: 6px;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero {
    padding: 72px 0 48px;
    margin-bottom: 40px;
  }

  .page-news .news-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-news .news-sidebar {
    width: 280px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .page-news .news-timeline {
    padding-left: 16px;
  }

  .page-news .news-card--report {
    display: flex;
    align-items: stretch;
  }

  .page-news .news-card--report .news-card__thumb {
    width: 240px;
    flex-shrink: 0;
  }

  .page-news .news-card--report .news-card__thumb .news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
  }

  .page-news .news-card--report .news-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-news .news-help-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
