.page-news {
  background: var(--c-bg-0);
  color: var(--c-white);
  overflow-x: hidden;
}

.page-news .news-breadcrumb {
  position: relative;
  z-index: 2;
  padding: 14px var(--container-pad);
  background: var(--c-bg-1);
  border-bottom: 1px solid rgba(139, 155, 180, 0.2);
}

.page-news .news-breadcrumb .breadcrumb__list {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-news .news-breadcrumb .breadcrumb__item {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-muted);
}

.page-news .news-breadcrumb .breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--c-purple);
}

.page-news .news-breadcrumb .breadcrumb__link {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.page-news .news-breadcrumb .breadcrumb__link:hover,
.page-news .news-breadcrumb .breadcrumb__link:focus-visible {
  color: var(--c-neon);
}

.page-news .news-breadcrumb [aria-current='page'] {
  color: var(--c-white);
}

.page-news .news-hero {
  position: relative;
  padding: clamp(56px, 9vw, 100px) 0 clamp(48px, 7vw, 84px);
  background:
    radial-gradient(circle at 80% 20%, rgba(155, 89, 182, 0.3) 0%, transparent 38%),
    linear-gradient(126deg, var(--c-bg-0) 0%, var(--c-bg-1) 58%, var(--c-bg-0) 100%);
  border-bottom: 2px solid rgba(57, 255, 20, 0.26);
}

.page-news .news-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 18vw;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--c-neon));
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
}

.page-news .news-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
  z-index: 1;
}

.page-news .news-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin: 0 0 10px;
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-white);
  margin: 0 0 14px;
}

.page-news .news-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--c-white);
  margin: 0 0 16px;
}

.page-news .news-hero__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}

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

.page-news .news-hero__stat {
  background: rgba(10, 31, 68, 0.72);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  min-width: 116px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-hero__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
}

.page-news .news-hero__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.06em;
}

.page-news .news-layout {
  padding-block: clamp(32px, 5vw, 64px);
}

.page-news .news-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-news .filter-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  opacity: 0;
}

.page-news .news-sidebar__title {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--c-white);
  margin: 0 0 6px;
}

.page-news .news-sidebar__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0 0 18px;
  max-width: 30ch;
}

.page-news .news-sidebar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .filter-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-white);
  background: rgba(10, 31, 68, 0.45);
  border: 1px solid var(--c-purple);
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.page-news .filter-label:hover,
.page-news .filter-label:focus-visible {
  border-color: var(--c-neon);
  color: var(--c-neon);
}

.page-news .news-layout__inner:has(#filter-all:checked) .filter-label[for='filter-all'],
.page-news .news-layout__inner:has(#filter-product:checked) .filter-label[for='filter-product'],
.page-news .news-layout__inner:has(#filter-schedule:checked) .filter-label[for='filter-schedule'],
.page-news .news-layout__inner:has(#filter-partner:checked) .filter-label[for='filter-partner'],
.page-news .news-layout__inner:has(#filter-op:checked) .filter-label[for='filter-op'] {
  background: var(--c-purple);
  border-color: var(--c-neon);
  color: var(--c-white);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.12);
}

.page-news .news-sidebar__media {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(140px, 24vw, 200px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(155, 89, 182, 0.42);
  margin-top: 20px;
}

.page-news .news-sidebar__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
}

.page-news .news-sidebar__cta--ghost {
  margin-top: 8px;
}

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

.page-news .news-main__visual {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(140px, 22vw, 240px);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(155, 89, 182, 0.3);
  margin-bottom: 20px;
}

.page-news .news-main__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(139, 155, 180, 0.24);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.page-news .news-main__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 30px);
  color: var(--c-white);
  margin: 0;
}

.page-news .news-main__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-neon);
  white-space: nowrap;
}

.page-news .news-list {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}

.page-news .news-card {
  position: relative;
  display: block;
  background: var(--c-bg-1);
  border-left: 4px solid var(--c-neon);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(18px, 2.6vw, 26px) clamp(18px, 2.6vw, 26px) 34px;
  text-decoration: none;
  color: var(--c-white);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.page-news .news-card:hover,
.page-news .news-card:focus-visible {
  transform: translateX(6px);
  box-shadow: 10px 10px 0 rgba(57, 255, 20, 0.08);
  border-left-color: var(--c-neon);
  outline: none;
}

.page-news .news-card:focus-visible {
  outline: 2px solid var(--c-neon);
  outline-offset: 3px;
}

.page-news .news-card[data-category='schedule'],
.page-news .news-card[data-category='partner'] {
  border-left-color: var(--c-purple);
}

.page-news .news-card[data-category='schedule']:hover,
.page-news .news-card[data-category='schedule']:focus-visible,
.page-news .news-card[data-category='partner']:hover,
.page-news .news-card[data-category='partner']:focus-visible {
  box-shadow: 10px 10px 0 rgba(155, 89, 182, 0.12);
}

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

.page-news .news-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(155, 89, 182, 0.2);
  border: 1px solid var(--c-purple);
  border-radius: 2px;
  padding: 3px 8px;
}

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

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-white);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.page-news .news-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0 0 14px;
  max-width: 62ch;
}

.page-news .news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-neon);
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-news .news-card__more::after {
  content: '';
  width: 18px;
  height: 8px;
  background: linear-gradient(90deg, var(--c-neon), transparent);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

.page-news .news-card:hover .news-card__more,
.page-news .news-card:focus-visible .news-card__more {
  opacity: 1;
  transform: translateX(4px);
}

.page-news .news-card__index {
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: rgba(57, 255, 20, 0.12);
  -webkit-text-stroke: 1px rgba(57, 255, 20, 0.38);
  pointer-events: none;
}

.page-news .news-card[data-category='schedule'] .news-card__index,
.page-news .news-card[data-category='partner'] .news-card__index {
  color: rgba(155, 89, 182, 0.22);
  -webkit-text-stroke: 1px rgba(155, 89, 182, 0.42);
}

.page-news .news-main__trail {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 22px;
  opacity: 0.72;
}

.page-news .news-layout__inner > #filter-product:checked ~ .news-main .news-card:not([data-category='product']),
.page-news .news-layout__inner > #filter-schedule:checked ~ .news-main .news-card:not([data-category='schedule']),
.page-news .news-layout__inner > #filter-partner:checked ~ .news-main .news-card:not([data-category='partner']),
.page-news .news-layout__inner > #filter-op:checked ~ .news-main .news-card:not([data-category='op']) {
  display: none;
}

@keyframes page-news-news-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-news .news-layout__inner > #filter-product:checked ~ .news-main .news-card[data-category='product'],
.page-news .news-layout__inner > #filter-schedule:checked ~ .news-main .news-card[data-category='schedule'],
.page-news .news-layout__inner > #filter-partner:checked ~ .news-main .news-card[data-category='partner'],
.page-news .news-layout__inner > #filter-op:checked ~ .news-main .news-card[data-category='op'] {
  animation: page-news-news-in 0.28s var(--ease) backwards;
}

.page-news .news-feature {
  position: relative;
  padding: clamp(40px, 6vw, 76px) 0;
  background:
    linear-gradient(110deg, rgba(155, 89, 182, 0.14) 0%, transparent 38%),
    var(--c-bg-1);
  overflow: hidden;
  border-top: 1px solid rgba(155, 89, 182, 0.32);
}

.page-news .news-feature::before {
  content: '';
  position: absolute;
  width: 210px;
  height: 210px;
  border: 2px solid rgba(57, 255, 20, 0.16);
  transform: rotate(22deg);
  right: -56px;
  top: -56px;
  pointer-events: none;
}

.page-news .news-feature__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-news .news-feature__media {
  position: relative;
}

.page-news .news-feature__cover {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.page-news .news-feature__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--c-neon);
  color: var(--c-bg-0);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 2px;
}

.page-news .news-feature__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin: 0 0 8px;
}

.page-news .news-feature__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.14;
  color: var(--c-white);
  margin: 0 0 14px;
}

.page-news .news-feature__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 22px;
  max-width: 46ch;
}

.page-news .topic-list {
  display: grid;
  gap: 12px;
}

.page-news .topic-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(10, 31, 68, 0.64);
  border: 1px solid rgba(155, 89, 182, 0.32);
  border-left: 3px solid var(--c-neon);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  color: var(--c-white);
  text-decoration: none;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.page-news .topic-item:hover,
.page-news .topic-item:focus-visible {
  transform: translateX(6px);
  border-color: var(--c-neon);
  background: rgba(10, 31, 68, 0.92);
  outline: none;
}

.page-news .topic-item__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--c-neon);
  min-width: 28px;
}

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

.page-news .topic-item__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
}

.page-news .topic-item__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-news .news-feature__more {
  margin-top: 18px;
  text-decoration: none;
  justify-content: center;
}

@media (min-width: 720px) {
  .page-news .news-hero__stats {
    gap: 18px;
  }

  .page-news .news-sidebar__media {
    height: 200px;
  }

  .page-news .news-main__trail {
    height: 140px;
  }

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

@media (min-width: 960px) {
  .page-news .news-layout__inner {
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 48px;
  }

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

  .page-news .news-feature__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .page-news .news-card:hover,
  .page-news .news-card:focus-visible {
    transform: translateX(8px);
  }
}
