.page-news {
  --news-line: rgba(216, 191, 224, .18);
  --news-node: var(--c-accent);
  --news-deco: rgba(216, 191, 224, .06);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(rgba(216, 191, 224, .14) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 6%, rgba(106, 44, 115, .28), transparent 36%),
    linear-gradient(180deg, rgba(11, 8, 16, 0) 0%, rgba(62, 26, 68, .2) 100%);
  background-size: 24px 24px, auto, auto;
}

.page-news .news-wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}

.page-news .breadcrumb-list {
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--c-silver);
}

.page-news .breadcrumb-link {
  color: var(--c-lilac);
  text-decoration: none;
}

.page-news .breadcrumb-link:hover {
  color: var(--c-accent);
}

.page-news .news-hero {
  position: relative;
  padding: 12px 0 40px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-hero::before {
  content: "UPDATE LOG";
  position: absolute;
  right: 0;
  bottom: 8px;
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 9vw, 5.4rem);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--news-deco);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.page-news .page-meta {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 10px;
}

.page-news .page-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.12;
  color: var(--c-fg);
  margin: 0 0 16px;
  max-width: 12em;
}

.page-news .page-lead {
  position: relative;
  z-index: 1;
  max-width: 56ch;
  font-size: .98rem;
  line-height: 1.8;
  color: var(--c-silver);
  margin: 0;
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

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

.page-news .section-index {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.page-news .section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-fg);
  margin: 0 0 6px;
}

.page-news .section-desc {
  font-size: .88rem;
  color: var(--c-silver);
  line-height: 1.7;
  margin: 0;
}

.page-news .news-list {
  position: relative;
  margin: 24px 0 0;
}

.page-news .news-list::before {
  content: "";
  position: absolute;
  left: 96px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--news-line) 40%, var(--news-line) 100%);
}

.page-news .news-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
}

.page-news .news-item:first-child {
  padding-top: 4px;
}

.page-news .news-item:last-child {
  padding-bottom: 4px;
}

.page-news .news-item::after {
  content: "";
  position: absolute;
  left: 91px;
  top: 34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--news-node);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .14);
}

.page-news .news-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(216, 191, 224, .24);
  box-shadow: var(--shadow-panel);
  background: linear-gradient(145deg, rgba(106, 44, 115, .42), rgba(11, 8, 16, .5));
}

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

.page-news .news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-bottom: 6px;
}

.page-news .news-time {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--c-silver);
}

.page-news .news-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--c-fg);
  margin: 0 0 6px;
}

.page-news .news-summary {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--c-silver);
  margin: 0 0 8px;
}

.page-news .news-detail {
  margin-top: 2px;
}

.page-news .news-detail summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--c-accent);
  list-style: none;
}

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

.page-news .news-detail summary::before {
  content: "↳";
  display: inline-block;
  transition: transform .25s var(--ease);
}

.page-news .news-detail[open] summary::before {
  transform: rotate(90deg);
}

.page-news .news-detail-body {
  margin-top: 10px;
  padding: 12px 14px;
  border-left: 2px solid var(--c-accent);
  background: var(--grad-panel);
  border-radius: 0 8px 8px 0;
}

.page-news .news-detail-body ul {
  margin: 0;
  padding-left: 18px;
}

.page-news .news-detail-body li {
  font-size: .86rem;
  line-height: 1.7;
  color: var(--c-lilac);
  padding-left: 2px;
}

.page-news .news-arrow {
  display: none;
}

.page-news .news-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-width: 0;
}

.page-news .console-panel {
  background: var(--grad-console);
  border: 1px solid rgba(216, 191, 224, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 18px;
}

.page-news .console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .console-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-fg);
  margin: 0;
}

.page-news .console-state {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--c-accent);
  border: 1px solid rgba(255, 106, 0, .3);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}

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

.page-news .tags-cloud .badge {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .03em;
  color: var(--c-lilac);
  background: rgba(106, 44, 115, .26);
  border: 1px solid rgba(216, 191, 224, .16);
  padding: 5px 10px;
  border-radius: 999px;
}

.page-news .tags-cloud .badge-hot {
  background: rgba(255, 106, 0, .16);
  color: #ffc9a1;
  border-color: rgba(255, 106, 0, .3);
}

.page-news .featured-series {
  position: relative;
  background: var(--grad-panel);
  border: 1px solid rgba(216, 191, 224, .18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 0;
  overflow: hidden;
}

.page-news .series-img {
  width: 100%;
  height: auto;
  aspect-ratio: 160 / 100;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(216, 191, 224, .18);
}

.page-news .series-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-fg);
  margin: 0;
  padding: 16px 18px 0;
}

.page-news .series-list {
  list-style: none;
  margin: 0;
  padding: 0 18px 16px;
}

.page-news .series-list li {
  border-top: 1px solid rgba(216, 191, 224, .1);
}

.page-news .series-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 2px;
  color: var(--c-lilac);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.page-news .series-name {
  color: inherit;
}

.page-news .series-route {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--c-accent);
  white-space: nowrap;
}

.page-news .series-list a:hover {
  color: var(--c-fg);
  padding-left: 6px;
}

.page-news .news-subscribe {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.page-news .subscribe-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 0, .24);
  box-shadow: 0 0 18px rgba(255, 106, 0, .16);
}

.page-news .subscribe-body h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-fg);
  margin: 0 0 8px;
}

.page-news .subscribe-body p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--c-silver);
  margin: 0 0 6px;
}

.page-news .subscribe-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .05em;
  color: var(--c-accent);
}

.page-news .subscribe-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 0 rgba(255, 106, 0, .4);
  animation: news-pulse 2.4s infinite;
}

.page-news .subscribe-note {
  grid-column: 1 / -1;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--c-silver);
  border-top: 1px dashed rgba(216, 191, 224, .16);
  padding-top: 10px;
  margin-top: 2px;
}

.page-news .trust-statement {
  margin-top: 44px;
}

@keyframes news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, .4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 106, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

@media (min-width: 960px) {
  .page-news .news-wrap {
    padding: 44px 40px 64px;
  }

  .page-news .news-hero {
    padding: 16px 0 44px;
    margin-bottom: 44px;
  }

  .page-news .news-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 46px;
    align-items: start;
  }

  .page-news .news-feed {
    border-right: 1px solid var(--news-line);
    padding-right: 40px;
  }

  .page-news .news-item {
    grid-template-columns: 80px minmax(0, 1fr) 32px;
    gap: 18px;
    padding: 26px 0;
  }

  .page-news .news-item:first-child {
    padding-top: 4px;
  }

  .page-news .news-arrow {
    display: block;
    align-self: center;
    justify-self: end;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--c-accent);
    opacity: .7;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
  }

  .page-news .news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(4px);
  }

  .page-news .news-sidebar {
    position: sticky;
    top: 24px;
  }

  .page-news .featured-series {
    padding: 20px 18px 18px;
    min-height: 220px;
  }

  .page-news .series-img {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 160px;
    height: 100px;
    border-radius: 6px;
    border: 1px solid rgba(216, 191, 224, .2);
    opacity: .6;
    aspect-ratio: auto;
    transition: opacity .3s var(--ease);
  }

  .page-news .series-img:hover {
    opacity: 1;
  }

  .page-news .series-title {
    padding: 0 170px 14px 0;
  }

  .page-news .series-list {
    padding: 0;
  }

  .page-news .series-list a {
    font-size: .92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-detail summary::before,
  .page-news .series-list a,
  .page-news .series-route,
  .page-news .news-arrow {
    transition: none;
  }

  .page-news .news-item:hover .news-arrow {
    transform: none;
  }

  .page-news .subscribe-status .status-dot {
    animation: none;
  }
}
