.news-page {
  color: #f4f0ff;
  background: #080720;
}

.news-main {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(240, 160, 80, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 32%, rgba(140, 92, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #07051a, #090720 55%, #080720);
}

.news-wrap {
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
}

.news-hero {
  padding: clamp(126px, 14vw, 176px) 0 clamp(42px, 6vw, 64px);
  text-align: center;
}

.news-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(244, 240, 255, 0.62);
  font-size: 0.84rem;
  transition: color 200ms ease, transform 200ms ease;
}

.news-back:hover {
  color: #ffd481;
  transform: translateX(-4px);
}

.news-kicker {
  color: #ffd481;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.news-title-row {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  align-items: center;
  gap: clamp(14px, 2.6vw, 30px);
  width: min(1120px, 100%);
  margin: 20px auto 16px;
}

.news-title-row > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 129, 0.44));
}

.news-title-row > span:last-child {
  background: linear-gradient(90deg, rgba(255, 212, 129, 0.44), transparent);
}

.news-title {
  max-width: 760px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(0.98rem, 1.5vw, 1.25rem);
  line-height: 1.45;
  white-space: nowrap;
  color: #fff7ff;
  text-shadow: 0 0 24px rgba(153, 111, 255, 0.28);
}

.news-date {
  color: rgba(244, 240, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.news-inline-image {
  width: min(100%, 940px);
  margin: clamp(30px, 5vw, 54px) auto;
  overflow: hidden;
  border: 1px solid rgba(218, 185, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(3, 2, 16, 0.48), 0 0 30px rgba(110, 69, 255, 0.14);
}

.news-inline-image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-body {
  padding-bottom: clamp(90px, 12vw, 150px);
}

.news-body p {
  margin: 0 0 1.55em;
  color: rgba(244, 240, 255, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 2;
}

.news-body h2 {
  margin: clamp(50px, 7vw, 76px) 0 22px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.45;
  color: #fff7ff;
}

.news-body h2::before {
  content: "✦";
  margin-right: 12px;
  color: #ffd481;
  font-size: 0.72em;
}

.news-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding-top: 42px;
  border-top: 1px solid rgba(218, 185, 255, 0.16);
  color: rgba(244, 240, 255, 0.5);
}

.news-next-wrap {
  display: grid;
  justify-items: end;
  gap: 7px;
  margin-top: -31px;
}

.news-return {
  padding: 8px 0;
  color: rgba(244, 240, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 200ms ease, transform 200ms ease;
}

.news-return:hover {
  color: #ffd481;
  transform: translateX(-4px);
}

.news-next-wrap small {
  max-width: 420px;
  overflow: hidden;
  color: rgba(244, 240, 255, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 212, 129, 0.28);
  border-radius: 999px;
  color: #ffd481;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(42, 25, 82, 0.72), rgba(18, 13, 48, 0.68));
  transition: transform 220ms ease, border-color 220ms ease;
}

.news-next:hover {
  transform: translateX(5px);
  border-color: rgba(255, 212, 129, 0.56);
}

.news-next b {
  font-size: 0.9rem;
}

.news-loading {
  display: grid;
  min-height: 100svh;
  place-items: center;
  color: rgba(244, 240, 255, 0.62);
}

@media (max-width: 640px) {
  .news-wrap {
    width: min(100% - 28px, 940px);
  }

  .news-title-row {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 10px;
  }

  .news-title {
    font-size: 1.02rem;
    white-space: normal;
  }

  .news-inline-image {
    border-radius: 10px;
  }

  .news-end {
    display: grid;
  }

  .news-next {
    width: max-content;
    justify-self: end;
  }

  .news-next-wrap {
    justify-self: end;
    margin-top: 0;
  }
}
