.page-news {
  background: var(--color-neutral);
  color: var(--color-ink);
  overflow-x: hidden;
  font-family: var(--font-sans);
  line-height: 1.7;
}

.page-news a {
  color: inherit;
}

.page-news .news-hero {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    var(--color-pitch);
  background-size: 44px 44px;
  color: var(--color-white);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-ember) 0%, var(--color-ember) 46%, var(--color-bolt) 100%);
}

.page-news .breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  font-size: .875rem;
}

.page-news .breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--color-silver);
}

.page-news .breadcrumbs__item a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
}

.page-news .breadcrumbs__item a:hover {
  color: var(--color-bolt);
}

.page-news .news-hero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.page-news .news-hero__prenote {
  display: inline-block;
  background: var(--color-ember);
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .3rem .8rem .3rem .65rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
  margin-bottom: 1.25rem;
}

.page-news .page-title__main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: .01em;
}

.page-news .page-title__main span {
  display: block;
  margin-top: .6rem;
  color: var(--color-bolt);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .04em;
}

.page-news .news-hero__lead {
  max-width: 560px;
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 1.25rem;
}

.page-news .news-hero__stats .stat-block + .stat-block {
  border-left: 1px solid rgba(255, 255, 255, .12);
  padding-left: 1.25rem;
}

.page-news .news-hero__stats dt {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-silver);
  margin-bottom: .35rem;
}

.page-news .news-hero__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1;
  color: var(--color-ember);
}

.page-news .news-jumpto {
  display: flex;
  gap: .25rem;
  overflow-x: auto;
  background: var(--color-white);
  border-bottom: 1px solid rgba(192, 192, 192, .45);
  scrollbar-width: none;
}

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

.page-news .news-jumpto a {
  flex: 0 1 auto;
  flex-basis: auto;
  white-space: nowrap;
  text-align: center;
  padding: .9rem 1.25rem;
  font-size: .875rem;
  text-decoration: none;
  color: var(--color-ink);
  border-top: 3px solid transparent;
  transition: border-color .2s, color .2s, background .2s;
}

.page-news .news-jumpto a span {
  font-family: var(--font-mono);
  color: var(--color-silver);
  margin-right: .4rem;
}

.page-news .news-jumpto a:hover {
  border-top-color: var(--color-ember);
  color: var(--color-ember);
  background: rgba(255, 107, 53, .06);
}

.page-news .news-layout {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.page-news .news-side {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.page-news .news-side__nav,
.page-news .news-side__card,
.page-news .news-side__keywords {
  background: var(--color-white);
  border: 1px solid rgba(192, 192, 192, .45);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.page-news .news-side__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 1rem;
  color: var(--color-pitch);
}

.page-news .news-cat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.page-news .news-cat__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  text-align: center;
  padding: .85rem .5rem;
  border: 1px solid rgba(192, 192, 192, .5);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-ink);
  transition: border-color .2s, background .2s, color .2s;
}

.page-news .news-cat__link svg {
  width: 20px;
  height: 20px;
  color: var(--color-grass);
  transition: color .2s;
}

.page-news .news-cat__link span {
  font-size: .75rem;
  line-height: 1.35;
}

.page-news .news-cat__link em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: .75rem;
  color: var(--color-silver);
}

.page-news .news-cat__link:hover {
  border-color: var(--color-ember);
  background: rgba(255, 107, 53, .06);
  color: var(--color-ember);
}

.page-news .news-cat__link:hover svg {
  color: var(--color-ember);
}

.page-news .news-side__figure {
  margin: 0;
  background: var(--color-pitch);
  border-radius: var(--radius);
  padding: .5rem;
}

.page-news .news-side__figure .img-frame {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
}

.page-news .news-side__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-side__figure figcaption {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--color-silver);
  padding: .6rem .4rem .4rem;
  letter-spacing: .04em;
}

.page-news .news-side__card ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: .875rem;
  line-height: 1.75;
}

.page-news .news-side__card li {
  padding-left: 1rem;
  border-left: 2px solid var(--color-silver);
  margin-bottom: .65rem;
  color: rgba(26, 26, 26, .78);
}

.page-news .news-side__keywords .news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.page-news .news-tags a {
  display: inline-block;
  background: var(--color-neutral);
  border: 1px solid rgba(192, 192, 192, .6);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .75rem;
  text-decoration: none;
  color: var(--color-ink);
  transition: background .2s, border-color .2s, color .2s;
}

.page-news .news-tags a:hover {
  background: rgba(0, 229, 255, .12);
  border-color: var(--color-bolt);
  color: var(--color-pitch);
}

.page-news .news-main {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
  min-width: 0;
}

.page-news .news-section {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(192, 192, 192, .45);
  transition: border-color .3s;
}

.page-news .news-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 4px;
  width: 56px;
  background: var(--color-silver);
  transition: background .3s, width .3s;
}

.page-news .news-section[data-active="true"]::before {
  background: var(--color-ember);
  width: 112px;
}

.page-news .section__header {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  margin-bottom: 1.75rem;
}

.page-news .section__index {
  font-family: var(--font-mono);
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-ember);
}

.page-news .section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--color-pitch);
  line-height: 1.2;
}

.page-news .section__note {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .18em;
  color: var(--color-silver);
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.page-news .news-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.page-news .news-feature {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .news-feature .img-frame {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: rgba(11, 59, 46, .15);
}

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

.page-news .news-feature__body {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .news-feature__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.page-news .news-feature__round {
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .1em;
  color: var(--color-grass);
  font-weight: 700;
}

.page-news .news-feature__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  line-height: 1.3;
  margin: 0 0 .75rem;
  color: var(--color-ink);
}

.page-news .news-feature__body p {
  font-size: .9375rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, .72);
  margin: 0 0 .65rem;
}

.page-news .news-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.1rem;
}

.page-news .news-item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-top: 3px solid var(--color-silver);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.page-news .news-item:hover {
  border-top-color: var(--color-ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.page-news .news-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .65rem;
}

.page-news .news-item__round {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--color-ember);
}

.page-news .news-item__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 .6rem;
  color: var(--color-ink);
}

.page-news .news-item .accordion__panel {
  color: rgba(26, 26, 26, .75);
  line-height: 1.7;
  font-size: .875rem;
  margin-bottom: .6rem;
}

.page-news .news-item .accordion__panel p {
  margin: 0;
}

.page-news .accordion__button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(192, 192, 192, .6);
  background: var(--color-neutral);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: .8125rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.page-news .accordion__button:hover {
  background: var(--color-white);
  border-color: var(--color-ember);
  color: var(--color-ember);
}

.page-news .accordion__icon::before {
  content: "+";
  font-family: var(--font-mono);
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}

.page-news .accordion__item[data-open] .accordion__icon::before {
  content: "–";
}

.page-news .accordion__item:not([data-open]) .accordion__panel {
  display: none;
}

.page-news .accordion__item[data-open] .accordion__panel {
  display: block;
}

.page-news .news-more {
  font-size: .875rem;
  color: rgba(26, 26, 26, .65);
  margin-top: 1.5rem;
}

.page-news .news-more a {
  color: var(--color-ember);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .topic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.page-news .topic-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-news .topic-card .img-frame {
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: rgba(11, 59, 46, .15);
}

.page-news .topic-card .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .topic-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.page-news .topic-card__no {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-ember);
  font-size: .875rem;
  display: block;
  margin-bottom: .45rem;
}

.page-news .topic-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0 0 .75rem;
  color: var(--color-ink);
}

.page-news .topic-card__body p {
  font-size: .9375rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, .75);
  margin: 0 0 1rem;
}

.page-news .topic-card__body ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: .75rem 0 0;
  border-top: 1px dashed rgba(192, 192, 192, .65);
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(26, 26, 26, .78);
}

.page-news .topic-card__body li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: .45rem;
}

.page-news .topic-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  background: var(--color-bolt);
  transform: rotate(45deg);
}

.page-news .topic-card--vball {
  background: var(--color-pitch);
  color: var(--color-white);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .topic-card--vball .topic-card__body h3 {
  color: var(--color-white);
}

.page-news .topic-card--vball .topic-card__body p,
.page-news .topic-card--vball .topic-card__body ul {
  color: rgba(255, 255, 255, .78);
}

.page-news .topic-card--vball .topic-card__body li::before {
  background: var(--color-ember);
}

.page-news .topic-card__visual {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(0, 0, 0, .22);
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .topic-card__visual > span:first-child {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--color-bolt);
}

.page-news .topic-card__visual > span:nth-child(2) {
  font-family: var(--font-mono);
  color: var(--color-silver);
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-size: .875rem;
}

.page-news .topic-card__visual ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: vball-tier;
}

.page-news .topic-card__visual li {
  counter-increment: vball-tier;
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .85);
  font-size: .875rem;
}

.page-news .topic-card__visual li::before {
  content: counter(vball-tier, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  color: var(--color-ember);
  font-weight: 700;
}

.page-news .version-entry {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.page-news .version-entry__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(192, 192, 192, .4);
}

.page-news .version-entry__head h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-pitch);
}

.page-news .version-entry__tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--color-grass);
  border: 1px solid var(--color-grass);
  padding: .18rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.page-news .version-entry__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.page-news .version-entry__content .img-frame {
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: rgba(11, 59, 46, .15);
}

.page-news .version-entry__content .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .version-entry__text {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.page-news .version-entry__text p {
  font-size: .9375rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, .75);
  margin: 0;
}

.page-news .version-entry__text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, .78);
}

.page-news .version-entry__text li {
  padding-left: 1.5rem;
  position: relative;
}

.page-news .version-entry__text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-bolt);
  font-family: var(--font-mono);
}

.page-news .version-entry--compact .version-entry__head {
  border-bottom: none;
}

.page-news .version-entry--compact .version-entry__list {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .75rem;
}

.page-news .version-entry--compact li {
  background: var(--color-neutral);
  border-left: 2px solid var(--color-bolt);
  padding: .9rem 1rem;
  font-size: .875rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, .8);
}

@media (min-width: 700px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }

  .page-news .news-jumpto a {
    flex: 1;
  }

  .page-news .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .news-feature {
    grid-column: 1 / -1;
    grid-template-columns: 1.1fr 1fr;
  }

  .page-news .news-feature .img-frame {
    aspect-ratio: auto;
    height: 100%;
  }

  .page-news .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-news .topic-card__visual {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, .08);
  }

  .page-news .version-entry__content {
    grid-template-columns: 1fr 1.2fr;
  }

  .page-news .version-entry__content .img-frame {
    aspect-ratio: auto;
    height: 100%;
  }

  .page-news .version-entry--compact .version-entry__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .page-news .news-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .page-news .news-side {
    position: sticky;
    top: 120px;
  }

  .page-news .news-cat {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .page-news .news-cat__link {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    border: none;
    border-left: 2px solid transparent;
    border-radius: 0;
    padding: .7rem .6rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 0 100%);
    background: transparent;
  }

  .page-news .news-cat__link span {
    font-size: .875rem;
  }

  .page-news .news-cat__link em {
    margin-left: auto;
  }

  .page-news .news-cat__link:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, .12), transparent);
    border-left-color: var(--color-ember);
  }
}

@media (max-width: 480px) {
  .page-news .section__note {
    display: none;
  }

  .page-news .news-hero__stats {
    border-left: none;
    padding-left: 0;
  }

  .page-news .news-hero__stats .stat-block + .stat-block {
    padding-left: .75rem;
  }

  .page-news .news-feature__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
