.page-news {
  --news-line: rgba(227, 238, 247, 0.14);
  --news-accent-soft: rgba(245, 179, 1, 0.12);
  --news-green-soft: rgba(0, 255, 157, 0.1);
  --news-card-pad: 18px;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 26px 0 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.page-news .breadcrumb-item {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.page-news .breadcrumb-item:hover,
.page-news .breadcrumb-item:focus-visible {
  color: var(--accent);
  outline: none;
}

.page-news .breadcrumb-sep {
  color: var(--text-muted);
  opacity: 0.6;
}

.page-news .breadcrumb-current {
  color: var(--accent);
}

.page-news .news-hero {
  position: relative;
  padding: 20px 0 32px;
  border-bottom: 1px solid var(--news-line);
  margin-bottom: 30px;
}

.page-news .news-hero-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

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

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 10px 0 8px;
  color: var(--text-primary);
}

.page-news .news-hero-lead {
  color: var(--accent-light);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.page-news .news-hero-desc {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 60ch;
  font-size: 0.95rem;
}

.page-news .news-hero-aside {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  min-width: 150px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--bg-card) 0%, var(--bg-secondary) 65%);
  border: 1px solid var(--news-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-news .news-hero-orbit {
  position: absolute;
  width: 128px;
  height: 128px;
  border: 1px dashed rgba(245, 179, 1, 0.42);
  border-radius: 50%;
  animation: news-rotate 16s linear infinite;
}

@keyframes news-rotate {
  to { transform: rotate(360deg); }
}

.page-news .news-hero-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0;
}

.page-news .news-hero-num-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 2px 0 4px;
  font-family: var(--font-mono);
}

.page-news .news-hero-num-tip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.75;
}

.page-news .news-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.page-news .news-cats {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--news-line);
}

.page-news .news-cats-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-cats-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--news-line);
  color: var(--text-primary);
  text-decoration: none;
  background: var(--bg-card);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  font-size: 0.9rem;
  min-width: 180px;
}

.page-news .news-cats-link em {
  font-style: normal;
  font-family: var(--font-mono);
  color: var(--accent);
}

.page-news .news-cats-link:hover,
.page-news .news-cats-link:focus-visible {
  border-color: var(--accent);
  background: var(--bg-elev);
  box-shadow: var(--shadow-glow);
  outline: none;
}

.page-news .news-cats-note {
  margin-top: 14px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px 12px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px dashed var(--news-line);
}

.page-news .dot-gold,
.page-news .dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.page-news .dot-gold {
  background: var(--accent);
}

.page-news .dot-green {
  background: var(--accent-green);
}

.page-news .news-section {
  position: relative;
  padding: 18px 0 8px;
  scroll-margin-top: calc(var(--header-h-desktop) + 20px);
}

.page-news .news-section + .news-section {
  margin-top: 12px;
}

.page-news .news-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: linear-gradient(115deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm) var(--radius-md) var(--radius-md) var(--radius-sm);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.page-news .news-section-head h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.5rem;
  margin: 4px 0 0;
  line-height: 1.15;
}

.page-news .news-section-badge {
  background: var(--news-accent-soft);
  border: 1px solid rgba(245, 179, 1, 0.35);
  color: var(--accent-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.page-news .news-section-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: -4px 0 18px;
  padding-left: 2px;
  max-width: 70ch;
}

.page-news .news-section-cover {
  margin: 0 0 22px;
}

.page-news .news-section-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--news-line);
  box-shadow: var(--shadow-card);
}

.page-news .news-section-cover--compact img,
.page-news .news-section-cover--square img {
  object-fit: cover;
  width: 100%;
}

.page-news .news-section-cover--compact img {
  aspect-ratio: 4 / 3;
}

.page-news .news-section-cover--square img {
  aspect-ratio: 1 / 1;
  max-width: 420px;
}

.page-news .news-timeline {
  position: relative;
  margin-left: 10px;
}

.page-news .news-entry {
  position: relative;
  margin: 0 0 16px;
  padding-left: 24px;
}

.page-news .news-entry::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  bottom: -16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(245, 179, 1, 0.08));
  border-radius: 2px;
}

.page-news .news-entry:last-child::before {
  display: none;
}

.page-news .news-entry-dot {
  position: absolute;
  left: 0;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.14), var(--shadow-glow);
}

.page-news .news-entry-dot--green {
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.12), var(--shadow-green-glow);
}

.page-news .news-entry-card {
  background: var(--bg-secondary);
  border: 1px solid var(--news-line);
  border-radius: var(--radius-md);
  padding: var(--news-card-pad);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-news .news-entry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 179, 1, 0.4);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

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

.page-news .news-entry-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-left: auto;
}

.page-news .news-entry-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.page-news .news-entry-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.page-news .news-expand {
  margin-top: 10px;
  font-size: 0.85rem;
}

.page-news .news-expand summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  list-style: none;
  user-select: none;
}

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

.page-news .news-expand summary::before {
  content: "+";
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--accent);
  border-radius: 4px;
  transition: transform var(--transition);
}

.page-news .news-expand[open] summary::before {
  content: "−";
}

.page-news .news-expand summary:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 4px;
  border-radius: 4px;
}

.page-news .news-expand p {
  color: var(--text-muted);
  border-left: 2px solid rgba(245, 179, 1, 0.45);
  padding-left: 12px;
  margin: 8px 0 0;
  line-height: 1.7;
}

.page-news .news-subscribe-cta {
  position: relative;
  margin: 44px 0 24px;
  padding: 28px 20px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(0, 255, 157, 0.06), rgba(245, 179, 1, 0.1) 45%, rgba(10, 30, 60, 0) 90%),
    var(--bg-card);
  border: 1px solid var(--news-line);
  box-shadow: var(--shadow-card);
}

.page-news .news-subscribe-cta h2 {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin: 10px 0 8px;
  color: var(--text-primary);
}

.page-news .news-subscribe-cta-inner > p:not(.mono-label) {
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.7;
  font-size: 0.95rem;
}

.page-news .news-subscribe-actions {
  list-style: none;
  padding: 0;
  margin: 20px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-subscribe-mail {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(10, 30, 60, 0.7);
  border: 1px dashed var(--news-line);
}

.page-news .news-subscribe-mail a {
  color: var(--accent-light);
  font-family: var(--font-mono);
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 179, 1, 0.4);
  transition: border-color var(--transition), color var(--transition);
}

.page-news .news-subscribe-mail a:hover,
.page-news .news-subscribe-mail a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.page-news .news-subscribe-mail-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.page-news .news-subscribe-help {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.page-news .news-subscribe-help a {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 179, 1, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.page-news .news-subscribe-help a:hover,
.page-news .news-subscribe-help a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.page-news [data-reveal] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-news [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {

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

  .page-news .news-hero-aside {
    margin-top: 6px;
  }

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

  .page-news .news-cats {
    position: sticky;
    top: calc(var(--header-h-desktop) + 20px);
  }

  .page-news .news-cats-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .page-news .news-cats-link {
    width: 100%;
    min-width: 0;
  }

  .page-news .news-section + .news-section {
    margin-top: 20px;
  }

  .page-news .news-section-cover--square img {
    max-width: 420px;
  }
}

@media (min-width: 1080px) {
  .page-news .news-layout {
    grid-template-columns: 260px 1fr;
    gap: 44px;
  }

  .page-news .news-cats {
    padding: 20px;
  }

  .page-news .news-section-head h2 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-news .news-hero-orbit {
    animation: none;
  }

  .page-news .news-entry-card:hover {
    transform: none;
  }
}
<<<PAGE_CSS_END>>>
