.page-news {
  background-color: var(--c7-paper);
  color: var(--c7-ink);
  font-family: var(--c7-sans);
  overflow-x: clip;
}

.page-news .news-hero {
  position: relative;
  padding: 36px var(--c7-gutter) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(155, 89, 182, .16), transparent 260px),
    radial-gradient(circle at 8% 30%, rgba(0, 212, 255, .1), transparent 220px),
    linear-gradient(180deg, #ffffff 0%, var(--c7-paper) 100%);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(45, 45, 45, .05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(45, 45, 45, .05) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--c7-content);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.page-news .news-hero__topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.page-news .news-hero__index {
  font-family: var(--c7-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--c7-red);
  border: 1px solid rgba(124, 46, 62, .28);
  border-radius: var(--c7-capsule);
  padding: 6px 14px;
}

.page-news .news-hero__title {
  font-family: var(--c7-serif);
  font-weight: 700;
  font-size: clamp(44px, 9vw, 76px);
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--c7-ink);
  margin: 30px 0 6px;
}

.page-news .news-hero__subtitle {
  font-family: var(--c7-sans);
  font-weight: 300;
  font-size: clamp(16px, 2.6vw, 24px);
  letter-spacing: .34em;
  color: var(--c7-gray);
  margin: 0;
  text-transform: uppercase;
}

.page-news .news-hero__lead {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--c7-gray);
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.page-news .news-hero__stat b {
  display: block;
  font-family: var(--c7-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--c7-red);
}

.page-news .news-hero__stat span {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c7-gray);
  margin-top: 4px;
}

.page-news .news-hero__brief {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(45, 45, 45, .1);
  border-radius: var(--c7-radius-md);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
}

.page-news .news-hero__brief-title {
  font-family: var(--c7-mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--c7-red);
  display: block;
  margin-bottom: 16px;
}

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

.page-news .news-hero__brief li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c7-ink);
}

.page-news .news-hero__brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c7-yellow);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, .2);
}

.page-news .news-hero__media {
  position: relative;
  z-index: 1;
  max-width: var(--c7-content);
  margin: 0 auto;
  border-radius: var(--c7-radius) var(--c7-radius) 0 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 18, 18, .18);
}

.page-news .news-hero__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-news .news-screen {
  position: relative;
  max-width: var(--c7-content);
  margin: 0 auto;
  padding: 60px var(--c7-gutter) 0;
}

.page-news .news-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.page-news .news-filter::-webkit-scrollbar {
  display: none;
}

.page-news .news-filter__hint {
  flex: 0 0 auto;
  font-family: var(--c7-mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--c7-gray);
  margin-right: 4px;
}

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

.page-news .news-filter__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--c7-capsule);
  border: 1px solid rgba(45, 45, 45, .16);
  background: #fff;
  color: var(--c7-ink);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background .24s var(--c7-ease), color .24s var(--c7-ease), border-color .24s var(--c7-ease), box-shadow .24s var(--c7-ease);
}

.page-news .news-filter__chip em {
  font-style: normal;
  font-family: var(--c7-mono);
  font-size: 12px;
  color: var(--c7-gray);
}

.page-news .news-filter__input#nf-all:checked ~ .news-filter label[for="nf-all"],
.page-news .news-filter__input#nf-notice:checked ~ .news-filter label[for="nf-notice"],
.page-news .news-filter__input#nf-event:checked ~ .news-filter label[for="nf-event"],
.page-news .news-filter__input#nf-version:checked ~ .news-filter label[for="nf-version"],
.page-news .news-filter__input#nf-insight:checked ~ .news-filter label[for="nf-insight"] {
  background: var(--c7-red);
  border-color: var(--c7-red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(124, 46, 62, .28);
}

.page-news .news-filter__input#nf-all:checked ~ .news-filter label[for="nf-all"] em,
.page-news .news-filter__input#nf-notice:checked ~ .news-filter label[for="nf-notice"] em,
.page-news .news-filter__input#nf-event:checked ~ .news-filter label[for="nf-event"] em,
.page-news .news-filter__input#nf-version:checked ~ .news-filter label[for="nf-version"] em,
.page-news .news-filter__input#nf-insight:checked ~ .news-filter label[for="nf-insight"] em {
  color: rgba(255, 255, 255, .8);
}

.page-news .news-filter__input#nf-all:focus-visible ~ .news-filter label[for="nf-all"],
.page-news .news-filter__input#nf-notice:focus-visible ~ .news-filter label[for="nf-notice"],
.page-news .news-filter__input#nf-event:focus-visible ~ .news-filter label[for="nf-event"],
.page-news .news-filter__input#nf-version:focus-visible ~ .news-filter label[for="nf-version"],
.page-news .news-filter__input#nf-insight:focus-visible ~ .news-filter label[for="nf-insight"] {
  outline: 2px solid var(--c7-blue);
  outline-offset: 3px;
}

.page-news .news-filter__input#nf-notice:checked ~ .news-archive .news-block:not([data-sect="notice"]),
.page-news .news-filter__input#nf-event:checked ~ .news-archive .news-block:not([data-sect="event"]),
.page-news .news-filter__input#nf-version:checked ~ .news-archive .news-block:not([data-sect="version"]),
.page-news .news-filter__input#nf-insight:checked ~ .news-archive .news-block:not([data-sect="insight"]) {
  display: none;
}

.page-news .news-archive {
  margin-top: 52px;
  display: grid;
  gap: clamp(72px, 10vw, 120px);
}

.page-news .news-block {
  display: grid;
  gap: 0;
}

.page-news .news-block__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(45, 45, 45, .14);
}

.page-news .news-block__head .c7-index {
  font-family: var(--c7-mono);
  font-size: 30px;
  line-height: 1;
  letter-spacing: .05em;
  color: var(--c7-red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-news .news-block__head .c7-index::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .4;
}

.page-news .news-block__title {
  font-family: var(--c7-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--c7-ink);
  margin: 0;
}

.page-news .news-block__desc {
  grid-column: 2;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c7-gray);
  margin: 4px 0 0;
  max-width: 560px;
}

.page-news .news-block__list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 34px;
}

.page-news .news-item {
  border-radius: var(--c7-radius-md);
  background: #fff;
  border: 1px solid rgba(45, 45, 45, .09);
  border-top: 3px solid transparent;
  box-shadow: 0 6px 18px rgba(18, 18, 18, .04);
  overflow: hidden;
  transition: transform .3s var(--c7-ease), box-shadow .3s var(--c7-ease);
}

.page-news .news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18, 18, 18, .1);
}

.page-news .news-block[data-sect="notice"] .news-item {
  border-top-color: var(--c7-red);
}

.page-news .news-block[data-sect="event"] .news-item {
  border-top-color: var(--c7-yellow);
}

.page-news .news-block[data-sect="version"] .news-item {
  border-top-color: var(--c7-blue);
}

.page-news .news-block[data-sect="insight"] .news-item {
  border-top-color: var(--c7-purple);
}

.page-news .news-item__inner {
  display: grid;
  gap: 0;
}

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

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

.page-news .news-item__time {
  font-family: var(--c7-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--c7-gray);
}

.page-news .news-item__cat {
  font-size: 12px;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: var(--c7-capsule);
}

.page-news .news-item__cat--notice {
  background: rgba(124, 46, 62, .1);
  color: var(--c7-red);
}

.page-news .news-item__cat--event {
  background: rgba(242, 183, 5, .18);
  color: #8c6500;
}

.page-news .news-item__cat--version {
  background: rgba(0, 212, 255, .14);
  color: #00788f;
}

.page-news .news-item__cat--insight {
  background: rgba(155, 89, 182, .14);
  color: #6c2b84;
}

.page-news .news-item__type {
  font-size: 12px;
  color: var(--c7-gray);
}

.page-news .news-item__title {
  font-family: var(--c7-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c7-ink);
  margin: 16px 0 10px;
}

.page-news .news-item__summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--c7-gray);
}

.page-news .news-item__panel {
  margin-top: 16px;
}

.page-news .news-item__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--c7-sans);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--c7-red);
  cursor: pointer;
  transition: opacity .2s var(--c7-ease);
}

.page-news .news-item__more:hover {
  opacity: .75;
}

.page-news .news-item__more::after {
  content: "＋";
  display: inline-block;
  font-size: 15px;
  transition: transform .3s var(--c7-ease);
}

.page-news .news-item__more[data-open]::after {
  transform: rotate(45deg);
}

.page-news .news-item__full {
  font-size: 14px;
  line-height: 1.85;
  color: var(--c7-gray);
}

.page-news .news-item__full p {
  margin: 0 0 12px;
}

.page-news .news-item__full p:last-child {
  margin-bottom: 0;
}

.page-news .news-item__full a {
  color: var(--c7-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .news-item__figure {
  position: relative;
  margin: 0;
  min-height: 180px;
  background: linear-gradient(135deg, rgba(18, 18, 18, .86), rgba(45, 45, 70, .9));
}

.page-news .news-item__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 212, 255, .12), transparent 40%, rgba(155, 89, 182, .18));
  pointer-events: none;
}

.page-news .news-item__figure img {
  display: block;
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.page-news .news-outro {
  max-width: var(--c7-content);
  margin: 110px auto 0;
  padding: 0 var(--c7-gutter) 80px;
}

.page-news .news-outro__wrap {
  position: relative;
  background:
    radial-gradient(circle at 90% 15%, rgba(155, 89, 182, .28), transparent 220px),
    radial-gradient(circle at 10% 90%, rgba(0, 212, 255, .18), transparent 200px),
    var(--c7-dark);
  color: #fff;
  border-radius: var(--c7-radius);
  padding: 44px 28px;
  overflow: hidden;
  display: grid;
  gap: 18px;
}

.page-news .news-outro__no {
  position: absolute;
  right: -14px;
  bottom: -46px;
  font-family: var(--c7-serif);
  font-weight: 700;
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 255, 255, .06);
  pointer-events: none;
  letter-spacing: -.05em;
}

.page-news .news-outro__title {
  font-family: var(--c7-serif);
  font-size: 28px;
  margin: 0;
  letter-spacing: .04em;
}

.page-news .news-outro__text {
  max-width: 620px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .72);
  position: relative;
  z-index: 1;
}

.page-news .news-outro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: 6px;
}

.page-news .news-outro .c7-btn--ghost {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.page-news .news-outro .c7-btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

@media (min-width: 768px) {
  .page-news .news-hero__inner {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr);
    gap: 48px;
    align-items: end;
  }

  .page-news .news-hero__title {
    margin-top: 24px;
  }

  .page-news .news-item__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 34%);
  }

  .page-news .news-item__text {
    order: 1;
  }

  .page-news .news-item__figure {
    order: 2;
  }

  .page-news .news-item__figure img {
    height: 100%;
    min-height: 260px;
  }

  .page-news .news-outro__wrap {
    grid-template-columns: 1fr auto;
    padding: 56px 48px;
  }

  .page-news .news-outro__actions {
    grid-column: 1 / -1;
  }
}
