.page-news {
  --journal-paper: var(--c-paper);
  --journal-muted: rgba(245, 242, 235, 0.64);
  --journal-line: rgba(0, 240, 255, 0.26);
  background:
    radial-gradient(1000px 420px at 88% -8%, rgba(177, 78, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent 280px),
    var(--c-bg);
  color: var(--journal-paper);
  padding-bottom: 96px;
}

.page-news__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 28px;
  font-size: 0.875rem;
}

.page-news__breadcrumb a,
.page-news__link,
.page-news__sidebar-links a {
  color: var(--c-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-news__breadcrumb a:hover,
.page-news__link:hover,
.page-news__sidebar-links a:hover {
  color: var(--c-primary);
}

.page-news__intro {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 0 56px;
}

.page-news__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--c-cyan);
  margin-bottom: 14px;
}

.page-news__intro-main h1 {
  font-size: 1.75rem;
  line-height: 1.24;
  margin: 0 0 16px;
  color: var(--journal-paper);
}

.page-news__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--journal-muted);
  max-width: 62ch;
  margin: 0;
}

.page-news__intro-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--journal-line);
  border-radius: 10px;
  background: rgba(0, 95, 106, 0.18);
}

.page-news__meta-label {
  font-size: 0.75rem;
  color: var(--journal-muted);
  letter-spacing: 0.1em;
}

.page-news__meta-value {
  font-size: 0.875rem;
  color: var(--c-cyan);
  font-weight: 600;
}

.page-news__intro-meta .btn {
  margin-left: auto;
}

.page-news__featured {
  padding-bottom: 72px;
}

.page-news__featured-grid {
  display: grid;
  gap: 24px;
}

.page-news__featured-main {
  border: 1px solid rgba(177, 78, 255, 0.32);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news__featured-main:hover {
  border-color: rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.page-news__featured-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.page-news__featured-body {
  padding: 20px;
}

.page-news__featured-body .tag {
  margin-bottom: 12px;
}

.page-news__featured-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 12px 0 10px;
}

.page-news__featured-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--journal-muted);
  margin-bottom: 14px;
}

.page-news__link {
  font-weight: 600;
  font-size: 0.875rem;
}

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

.page-news__mini-card {
  position: relative;
  padding: 22px;
  border-radius: 12px;
  background: var(--c-indigo);
  border: 1px solid rgba(245, 242, 235, 0.1);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-news__mini-card:hover {
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.page-news__mini-card--community {
  background: var(--c-teal);
}

.page-news__mini-version {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.75rem;
  color: var(--c-cyan);
  background: rgba(0, 240, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 14px;
}

.page-news__mini-title {
  font-size: 1.125rem;
  line-height: 1.4;
  margin: 0 0 8px;
}

.page-news__mini-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--journal-muted);
  margin-bottom: 14px;
}

.page-news__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 8px 0 72px;
}

.page-news__sidebar-title {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.page-news__topic-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-news__topic-item {
  margin: 0;
}

.page-news__topic-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  color: var(--journal-paper);
  background: rgba(245, 242, 235, 0.04);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-news__topic-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-cyan);
  flex: none;
}

.page-news__topic-item:nth-child(1) .page-news__topic-link::before {
  background: var(--c-teal);
}

.page-news__topic-item:nth-child(2) .page-news__topic-link::before {
  background: var(--c-primary);
}

.page-news__topic-item:nth-child(3) .page-news__topic-link::before {
  background: var(--c-wine);
}

.page-news__topic-item:nth-child(4) .page-news__topic-link::before {
  background: var(--c-indigo);
}

.page-news__topic-link:hover,
.page-news__topic-link.is-active {
  background: rgba(177, 78, 255, 0.12);
  border-color: rgba(177, 78, 255, 0.4);
  color: var(--c-cyan);
}

.page-news__sidebar-note {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.18);
  background: linear-gradient(140deg, rgba(0, 95, 106, 0.35), rgba(61, 46, 136, 0.3));
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.page-news__sidebar-note-no {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-cyan);
  margin-bottom: 10px;
}

.page-news__sidebar-note-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--journal-muted);
  margin-bottom: 14px;
}

.page-news__sidebar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
}

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

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

.page-news__section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-news__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}

.page-news__dot--teal {
  background: var(--c-teal);
  box-shadow: 0 0 0 4px rgba(0, 95, 106, 0.3);
}

.page-news__dot--primary {
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(177, 78, 255, 0.24);
}

.page-news__dot--wine {
  background: var(--c-wine);
  box-shadow: 0 0 0 4px rgba(122, 32, 72, 0.3);
}

.page-news__dot--indigo {
  background: var(--c-indigo);
  box-shadow: 0 0 0 4px rgba(61, 46, 136, 0.35);
}

.page-news__section-head h2 {
  font-size: 1.375rem;
  line-height: 1.3;
  margin: 0;
}

.page-news__section-count {
  font-size: 0.75rem;
  color: var(--journal-muted);
  letter-spacing: 0.1em;
  margin-left: auto;
}

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

.page-news__entry {
  position: relative;
  padding: 0 0 36px 24px;
}

.page-news__entry:last-child {
  padding-bottom: 8px;
}

.page-news__entry::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: -8px;
  width: 1px;
  background: linear-gradient(180deg, var(--c-cyan), transparent);
  opacity: 0.36;
}

.page-news__entry:last-child::before {
  background: transparent;
}

.page-news__entry-meta {
  position: relative;
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: var(--c-cyan);
  background: rgba(0, 240, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.page-news__entry-meta::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.page-news__section[id="section-rules"] .page-news__entry-meta::before {
  background: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(0, 95, 106, 0.28);
}

.page-news__section[id="section-version"] .page-news__entry-meta::before {
  background: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(177, 78, 255, 0.24);
}

.page-news__section[id="section-tournament"] .page-news__entry-meta::before {
  background: var(--c-wine);
  box-shadow: 0 0 0 3px rgba(122, 32, 72, 0.28);
}

.page-news__section[id="section-community"] .page-news__entry-meta::before {
  background: var(--c-indigo);
  box-shadow: 0 0 0 3px rgba(61, 46, 136, 0.34);
}

.page-news__entry-content {
  background: rgba(245, 242, 235, 0.04);
  border: 1px solid rgba(245, 242, 235, 0.08);
  border-radius: 12px;
  padding: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news__entry-content:hover {
  border-color: rgba(177, 78, 255, 0.36);
  background: rgba(255, 255, 255, 0.05);
}

.page-news__entry-title {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 10px;
}

.page-news__entry-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--journal-muted);
  margin: 0;
}

.page-news__entry-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  margin: 12px 0;
}

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

.page-news__subscribe {
  position: relative;
  background:
    linear-gradient(120deg, rgba(177, 78, 255, 0.18), rgba(0, 240, 255, 0.08)),
    var(--c-indigo);
  border-top: 1px solid rgba(177, 78, 255, 0.4);
  border-bottom: 1px solid rgba(0, 240, 255, 0.24);
  padding: 56px 0 64px;
}

.page-news__subscribe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(177, 78, 255, 0.14), rgba(0, 240, 255, 0.06));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  pointer-events: none;
}

.page-news__subscribe-no {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--c-cyan);
  border: 1px solid rgba(0, 240, 255, 0.36);
  border-radius: 999px;
  margin-bottom: 16px;
}

.page-news__subscribe-title {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 14px;
}

.page-news__subscribe-text {
  max-width: 56ch;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--journal-muted);
  margin-bottom: 24px;
}

.page-news__subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.page-news__subscribe-note {
  font-size: 0.75rem;
  color: rgba(245, 242, 235, 0.5);
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .page-news__featured-side {
    grid-template-columns: 1fr 1fr;
  }

  .page-news__topic-list {
    grid-template-columns: 1fr 1fr;
  }

  .page-news__entry-content {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .page-news__intro {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 0 64px;
  }

  .page-news__intro-main h1 {
    font-size: 2.25rem;
    max-width: 22ch;
  }

  .page-news__intro-meta {
    width: 300px;
    flex-shrink: 0;
  }

  .page-news__featured-grid {
    grid-template-columns: 1fr 380px;
    align-items: stretch;
  }

  .page-news__featured-side {
    grid-template-columns: 1fr;
  }

  .page-news__main {
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
  }

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

  .page-news__section-head h2 {
    font-size: 1.5rem;
  }

  .page-news__entry-content {
    padding: 22px;
  }
}
