.page-news {
  --nu-line: rgba(232, 237, 245, 0.16);
  --nu-line-strong: rgba(232, 237, 245, 0.28);
  --nu-muted: rgba(232, 237, 245, 0.66);
  --nu-card: rgba(18, 59, 107, 0.48);
  --nu-card-hover: rgba(18, 59, 107, 0.74);
  background: var(--c-ink);
  color: var(--c-mist);
  font-family: var(--font-body);
}

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

.page-news .breadcrumb {
  margin-bottom: 30px;
  font-size: 13px;
  color: var(--c-mist);
}

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

.page-news .breadcrumb a:hover {
  text-decoration: underline;
}

.page-news__hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 40px;
  background:
    radial-gradient(920px 420px at 88% -8%, rgba(138, 43, 226, 0.32), transparent 70%),
    radial-gradient(720px 360px at 6% 96%, rgba(255, 107, 53, 0.18), transparent 65%),
    var(--c-ink);
}

.page-news__hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 120px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(138, 43, 226, 0.1));
  transform: rotate(18deg);
  border: 1px solid rgba(232, 237, 245, 0.08);
  pointer-events: none;
}

.page-news__hero .section-kicker {
  color: var(--c-orange);
  letter-spacing: 0.22em;
}

.page-news__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

.page-news__hero-copy {
  min-width: 0;
}

.page-news__hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--c-white);
  margin: 16px 0 18px;
  text-transform: uppercase;
}

.page-news__hero-desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-mist);
  margin: 0;
}

.page-news__hero-panel {
  position: relative;
  padding: 18px 24px 22px;
  background: linear-gradient(135deg, var(--c-orange) 0%, #e84425 58%, var(--c-violet) 145%);
  border-radius: 14px;
  clip-path: var(--clipper);
  color: var(--c-white);
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.page-news__hero-num {
  font-family: var(--font-head);
  font-size: 92px;
  line-height: 0.85;
}

.page-news__hero-meta strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.page-news__hero-meta span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.88;
}

.page-news__index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--nu-line);
}

.page-news__index a {
  position: relative;
  display: block;
  padding: 14px 8px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-mist);
  text-decoration: none;
  background: var(--nu-card);
  border: 1px solid var(--nu-line);
  border-radius: 12px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.page-news__index a span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-orange);
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.page-news__index a:hover {
  background: var(--nu-card-hover);
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
}

.page-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  padding: 0 0 80px;
}

.page-news__main {
  min-width: 0;
}

.page-news__section {
  margin-bottom: 56px;
}

.page-news__section .section-head {
  margin-bottom: 24px;
}

.page-news__section .section-head h2,
.page-news__aside-card .section-head h2 {
  font-family: var(--font-head);
  font-size: 31px;
  color: var(--c-white);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}

.page-news__list {
  display: grid;
  gap: 16px;
}

.page-news__item {
  position: relative;
  padding: 22px 20px;
  background: var(--nu-card);
  border: 1px solid var(--nu-line);
  border-left: 3px solid var(--c-orange);
  border-radius: 12px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.page-news__item:hover {
  transform: translateY(-4px);
  background: var(--nu-card-hover);
  border-left-color: var(--c-violet);
}

.page-news__item--lead {
  border-left-color: var(--c-violet);
  padding: 30px 26px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18) 0%, rgba(18, 59, 107, 0.6) 62%);
}

.page-news__item--lead h3 {
  font-size: 24px;
}

.page-news__item--with-thumb {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: start;
}

.page-news__item-thumb {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--nu-line-strong);
}

.page-news__item-thumb img {
  width: 100%;
  max-width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

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

.page-news__item-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.page-news__item h3 {
  font-size: 18px;
  color: var(--c-white);
  line-height: 1.5;
  margin: 0 0 8px;
}

.page-news__item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--nu-muted);
  margin: 0 0 14px;
}

.page-news__item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-news__item-label {
  font-size: 12px;
  color: var(--nu-muted);
  letter-spacing: 0.04em;
}

.page-news__link {
  color: var(--c-orange);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

.page-news__link:hover {
  border-color: var(--c-orange);
}

.page-news .btn-ghost {
  border-color: rgba(255, 107, 53, 0.45);
  color: var(--c-orange);
}

.page-news .btn-ghost:hover {
  background: rgba(255, 107, 53, 0.14);
  color: var(--c-white);
  border-color: var(--c-orange);
}

.page-news .btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.page-news .tag--orange {
  background: rgba(255, 107, 53, 0.18);
  color: var(--c-orange);
  border: 1px solid rgba(255, 107, 53, 0.4);
}

.page-news .tag--violet {
  background: rgba(138, 43, 226, 0.18);
  color: var(--c-mist);
  border: 1px solid rgba(138, 43, 226, 0.42);
}

.page-news__changelog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news__changelog-aside {
  background: rgba(138, 43, 226, 0.1);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(138, 43, 226, 0.25);
}

.page-news__changelog-icon img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.page-news__changelog-note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--nu-muted);
}

.page-news__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news__timeline-item {
  position: relative;
  margin: 0 0 14px;
  padding: 18px 20px 16px 26px;
  background: var(--nu-card);
  border: 1px solid var(--nu-line);
  border-left: 3px solid rgba(255, 107, 53, 0.7);
  border-radius: 12px;
}

.page-news__timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 26px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.page-news__timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  bottom: -14px;
  width: 1px;
  background: var(--nu-line-strong);
}

.page-news__timeline-item .tag {
  display: inline-block;
  margin-bottom: 8px;
}

.page-news__timeline-item h3 {
  font-size: 17px;
  color: var(--c-white);
  margin: 0 0 6px;
  line-height: 1.45;
}

.page-news__timeline-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--nu-muted);
}

.page-news__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-news__feature-card {
  display: flex;
  flex-direction: column;
  background: var(--nu-card);
  border: 1px solid var(--nu-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.page-news__feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 107, 53, 0.4);
}

.page-news__feature-cover img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news__feature-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 20px;
}

.page-news__feature-body .tag {
  align-self: flex-start;
  margin-bottom: 12px;
}

.page-news__feature-body h3 {
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-white);
  margin: 0 0 10px;
}

.page-news__feature-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--nu-muted);
  margin: 0 0 18px;
}

.page-news__feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.page-news__feature-meta {
  font-size: 12px;
  color: var(--nu-muted);
  letter-spacing: 0.06em;
}

.page-news__pager {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--nu-line);
}

.page-news__pager a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-mist);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 8px;
  border: 1px solid var(--nu-line);
  border-radius: 10px;
  transition: border-color 0.25s, background 0.25s;
}

.page-news__pager a span {
  color: var(--c-orange);
}

.page-news__pager a:hover {
  border-color: rgba(255, 107, 53, 0.5);
  background: var(--nu-card);
}

.page-news__aside {
  padding-top: 24px;
  border-top: 1px solid var(--nu-line);
  min-width: 0;
}

.page-news__aside-card {
  padding: 24px 20px;
  background: var(--nu-card);
  border: 1px solid var(--nu-line);
  border-radius: 16px;
  margin-bottom: 20px;
}

.page-news__aside-card .section-head--compact {
  margin-bottom: 16px;
}

.page-news__aside-card .section-head--compact h2 {
  font-size: 25px;
}

.page-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news__tags .tag {
  cursor: default;
}

.page-news__notice {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.16) 0%, rgba(18, 59, 107, 0.44) 55%, rgba(138, 43, 226, 0.12) 100%);
  border-color: rgba(255, 107, 53, 0.28);
}

.page-news__notice-icon img {
  width: 100%;
  max-width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.page-news__notice-body {
  padding: 22px 20px;
}

.page-news__notice-body .tag {
  display: inline-block;
}

.page-news__notice-body h2 {
  font-size: 18px;
  color: var(--c-white);
  margin: 12px 0 10px;
  line-height: 1.4;
}

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

.page-news__notice-body li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--nu-muted);
  margin-bottom: 8px;
}

.page-news__quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news__quick-list li {
  border-bottom: 1px solid var(--nu-line);
}

.page-news__quick-list li:last-child {
  border-bottom: 0;
}

.page-news__quick-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 2px;
  color: var(--c-mist);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s, padding-left 0.25s;
}

.page-news__quick-list a::after {
  content: "→";
  color: var(--c-orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}

.page-news__quick-list a:hover {
  color: var(--c-white);
  padding-left: 8px;
}

.page-news__quick-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 640px) {
  .page-news__item--with-thumb {
    grid-template-columns: 180px 1fr;
    gap: 20px;
  }

  .page-news__item-thumb img {
    height: 120px;
  }
}

@media (min-width: 760px) {
  .page-news__changelog {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
  }

  .page-news__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .page-news__hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (min-width: 960px) {
  .page-news__hero {
    padding: 126px 0 52px;
  }

  .page-news__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    padding: 0 0 96px;
  }

  .page-news__section + .page-news__section {
    border-top: 1px solid var(--nu-line);
    padding-top: 48px;
  }

  .page-news__aside {
    position: sticky;
    top: 92px;
    align-self: start;
    padding-top: 0;
    border-top: 0;
  }
}
