.page-news {
  --news-pink: #ff6ec7;
  --news-blue: #3498db;
  --news-purple: #9b59b6;
  --news-bg-card: rgba(28, 16, 48, 0.66);
  --news-border: rgba(155, 89, 182, 0.22);
  --news-line: rgba(155, 89, 182, 0.28);
  --news-text-dim: #7f8fa6;
  --news-radius: 14px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
}

.page-news .container {
  width: min(100% - 32px, var(--content-max));
  margin-inline: auto;
}

.page-news .news-hero {
  position: relative;
  padding: 28px 0 36px;
  background:
    linear-gradient(135deg, rgba(155, 89, 182, 0.22) 0%, transparent 38%),
    linear-gradient(315deg, rgba(255, 110, 199, 0.16) 0%, transparent 46%),
    var(--bg-secondary);
  border-bottom: 1px solid var(--news-border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 0 100%);
  margin-bottom: 8px;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--news-purple), var(--news-pink), var(--news-blue));
  opacity: 0.7;
}

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

.page-news .breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumb a:hover {
  color: var(--news-pink);
}

.page-news .breadcrumb__sep {
  margin: 0 8px;
  color: var(--news-purple);
}

.page-news .news-hero__grid {
  display: grid;
  gap: 28px;
  align-items: end;
}

.page-news .news-hero__content {
  position: relative;
}

.page-news .page-news__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5.2vw, 44px);
  line-height: 1.16;
  margin: 10px 0 18px;
  letter-spacing: 0.02em;
  max-width: 10em;
}

.page-news .page-news__lead {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 42em;
  margin: 0;
}

.page-news .news-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.page-news .news-stat {
  flex: 1 1 120px;
  padding: 16px 14px;
  background: var(--news-bg-card);
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius);
  box-shadow: 0 0 14px rgba(155, 89, 182, 0.14);
}

.page-news .news-stat__label {
  font-size: 12px;
  color: var(--news-text-dim);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

.page-news .news-stat__num {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.page-news .news-stat:nth-child(2) .news-stat__num {
  color: var(--news-pink);
}

.page-news .news-stat:nth-child(3) .news-stat__num {
  color: var(--news-blue);
}

.page-news .news-layout {
  display: grid;
  gap: 28px;
  padding: 30px 0 56px;
}

.page-news .news-layout__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.page-news .news-layout__side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.page-news .news-section {
  background: var(--news-bg-card);
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius);
  padding: 22px 18px;
  position: relative;
}

.page-news .news-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--news-purple), var(--news-blue));
}

.page-news .news-section__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 22px;
  padding-left: 12px;
}

.page-news .news-section__header .section-kicker {
  margin-bottom: 4px;
}

.page-news .news-section__header .section-title {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}

.page-news .news-section__note {
  font-size: 12px;
  color: var(--news-text-dim);
  background: rgba(52, 152, 219, 0.12);
  border: 1px solid rgba(52, 152, 219, 0.24);
  border-radius: 999px;
  padding: 5px 12px;
  margin: 0;
  white-space: nowrap;
}

.page-news .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.page-news .tabs__trigger {
  appearance: none;
  border: 1px solid var(--news-border);
  background: rgba(10, 11, 20, 0.6);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-news .tabs__trigger:hover {
  border-color: var(--news-purple);
  color: var(--text-primary);
}

.page-news .tabs__trigger.is-active {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.4), rgba(52, 152, 219, 0.3));
  border-color: var(--news-pink);
  color: var(--text-primary);
  box-shadow: 0 0 14px rgba(255, 110, 199, 0.22);
}

.page-news .tab-panel[hidden],
.page-news .topic-tabs__panel[hidden] {
  display: none;
}

.page-news .update-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 1px solid var(--news-line);
  display: flex;
  flex-direction: column;
}

.page-news .update-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 14px 0 14px 18px;
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.page-news .update-item:last-child {
  border-bottom: none;
}

.page-news .update-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--news-blue);
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.7);
}

.page-news .update-item:nth-child(3n)::before {
  background: var(--news-pink);
  box-shadow: 0 0 8px rgba(255, 110, 199, 0.7);
}

.page-news .update-item:nth-child(2n)::before {
  background: var(--news-purple);
  box-shadow: 0 0 8px rgba(155, 89, 182, 0.7);
}

.page-news .update-item__thumb {
  flex-shrink: 0;
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--news-border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.page-news .update-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news .update-item__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-news .update-item__quality {
  font-size: 11px;
  color: var(--news-blue);
  border: 1px solid rgba(52, 152, 219, 0.35);
  background: rgba(52, 152, 219, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}

.page-news .update-item__title {
  font-family: var(--font-serif);
  font-size: 16px;
  margin: 0 0 4px;
  line-height: 1.3;
}

.page-news .update-item__meta {
  font-size: 12px;
  color: var(--news-text-dim);
  margin: 0 0 8px;
}

.page-news .update-item__time {
  font-size: 11px;
  color: var(--news-text-dim);
  letter-spacing: 0.04em;
}

.page-news .update-item--plain {
  padding-left: 18px;
}

.page-news .update-item--plain .update-item__body {
  padding: 0;
}

.page-news .load-more {
  margin-top: 22px;
  text-align: center;
}

.page-news .load-more__note {
  font-size: 12px;
  color: var(--news-text-dim);
  margin: 8px 0 0;
}

.page-news .mobile-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-news .mobile-card {
  position: relative;
  background: rgba(10, 11, 20, 0.5);
  border: 1px solid var(--news-border);
  border-left: 3px solid var(--news-pink);
  border-radius: 10px;
  padding: 18px 16px 14px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .mobile-card:hover {
  transform: translateX(4px);
  box-shadow: 0 0 18px rgba(255, 110, 199, 0.12);
}

.page-news .mobile-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a0b14;
  background: linear-gradient(90deg, var(--news-pink), var(--news-purple));
  border-radius: 3px;
  padding: 3px 8px;
  margin-bottom: 10px;
}

.page-news .mobile-card__title {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 8px;
}

.page-news .mobile-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

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

.page-news .mobile-card__date {
  font-size: 12px;
  color: var(--news-text-dim);
}

.page-news .archive-shelf {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.page-news .archive-shelf__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--news-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news .archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .archive-list__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(10, 11, 20, 0.5);
  border: 1px solid rgba(155, 89, 182, 0.14);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news .archive-list__link:hover {
  border-color: var(--news-purple);
  background: rgba(155, 89, 182, 0.08);
}

.page-news .archive-list__no {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--news-pink);
  white-space: nowrap;
}

.page-news .archive-list__topic {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.page-news .archive-list__count {
  font-size: 12px;
  color: var(--news-blue);
  white-space: nowrap;
}

.page-news .topic-tabs__list {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.page-news .topic-tabs__trigger {
  appearance: none;
  border: 1px solid var(--news-border);
  background: rgba(10, 11, 20, 0.5);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-news .topic-tabs__trigger:hover {
  border-color: var(--news-pink);
  color: var(--text-primary);
}

.page-news .topic-tabs__trigger.is-active {
  background: linear-gradient(135deg, rgba(255, 110, 199, 0.3), rgba(155, 89, 182, 0.3));
  border-color: var(--news-pink);
  color: var(--text-primary);
}

.page-news .topic-tabs__panel {
  background: rgba(10, 11, 20, 0.45);
  border: 1px solid var(--news-border);
  border-radius: 10px;
  overflow: hidden;
}

.page-news .topic-tabs__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-news .topic-tabs__body {
  padding: 16px;
}

.page-news .topic-tabs__title {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 10px 0 8px;
}

.page-news .topic-tabs__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.6;
}

.page-news .topic-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.page-news .topic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(10, 11, 20, 0.45);
  border: 1px solid rgba(155, 89, 182, 0.14);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-news .topic-item:hover {
  background: rgba(155, 89, 182, 0.08);
  border-color: var(--news-purple);
}

.page-news .topic-item__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--news-blue);
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.7);
}

.page-news .topic-item:first-child .topic-item__dot {
  background: var(--news-pink);
  box-shadow: 0 0 8px rgba(255, 110, 199, 0.7);
}

.page-news .topic-item__title {
  font-size: 15px;
  margin: 0;
  line-height: 1.3;
}

.page-news .topic-item__meta {
  font-size: 12px;
  color: var(--news-text-dim);
  margin: 2px 0 0;
}

.page-news .promo-card {
  background: linear-gradient(145deg, rgba(28, 16, 48, 0.9), rgba(10, 11, 20, 0.7));
  border: 1px solid rgba(255, 110, 199, 0.25);
  border-radius: var(--news-radius);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(255, 110, 199, 0.1);
}

.page-news .promo-card__img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.page-news .promo-card__body {
  padding: 18px 18px 20px;
}

.page-news .promo-card__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--news-pink);
  margin: 0 0 6px;
}

.page-news .promo-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 1.35;
}

.page-news .promo-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.6;
}

.page-news .btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-align: center;
}

.page-news .btn--primary {
  background: linear-gradient(135deg, var(--news-purple), var(--news-pink));
  color: #0a0b14;
  border: none;
  box-shadow: 0 0 12px rgba(155, 89, 182, 0.35);
}

.page-news .btn--primary:hover {
  box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
  transform: translateY(-1px);
}

.page-news .btn--ghost {
  background: transparent;
  border: 1px solid var(--news-border);
  color: var(--text-secondary);
}

.page-news .btn--ghost:hover {
  border-color: var(--news-pink);
  color: var(--text-primary);
}

.page-news .btn--sm {
  padding: 7px 16px;
  font-size: 12px;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(155, 89, 182, 0.16);
  border: 1px solid rgba(155, 89, 182, 0.28);
  color: var(--text-primary);
}

.page-news .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--news-purple);
}

.page-news .tag--asia::before {
  background: #e74c3c;
}

.page-news .tag--euro::before {
  background: #3498db;
}

.page-news .tag--jp::before {
  background: #ff6ec7;
}

.page-news .tag--cn::before {
  background: #f39c12;
}

.page-news .tag--anime::before {
  background: #9b59b6;
}

.page-news .tag--feature::before {
  background: var(--news-pink);
  box-shadow: 0 0 6px rgba(255, 110, 199, 0.6);
}

.page-news .section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--news-pink);
  text-transform: uppercase;
  margin: 0;
}

.page-news .section-title {
  font-family: var(--font-serif);
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 40px 0 52px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
  }

  .page-news .news-hero__stats {
    justify-content: flex-end;
  }

  .page-news .news-stat {
    flex: 0 1 150px;
  }

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

  .page-news .archive-shelf {
    grid-template-columns: auto 1fr;
  }

  .page-news .archive-shelf__img {
    width: 180px;
    height: 180px;
    aspect-ratio: auto;
  }
}

@media (min-width: 1024px) {
  .page-news .news-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 40px 0 72px;
  }

  .page-news .news-layout__main {
    gap: 36px;
  }

  .page-news .news-layout__side {
    position: sticky;
    top: 90px;
    gap: 32px;
  }

  .page-news .news-section__header .section-title {
    font-size: 28px;
  }

  .page-news .mobile-card {
    padding: 20px 18px 16px 24px;
  }

  .page-news .page-news__title {
    font-size: 46px;
  }
}
