.page-news {
  position: relative;
  background-image:
    radial-gradient(rgba(45, 225, 167, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--clr-text);
  padding-bottom: var(--space-xl);
}

.page-news__breadcrumb {
  margin-bottom: var(--space-md);
}

.page-news__hero {
  display: grid;
  gap: var(--space-lg);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-dark) 100%);
  border: 2px solid var(--clr-neon);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.page-news__hero::after {
  content: "LOG";
  position: absolute;
  right: -14px;
  bottom: -26px;
  font-family: var(--font-headline);
  font-size: 112px;
  line-height: 1;
  color: rgba(45, 225, 167, 0.07);
  pointer-events: none;
  letter-spacing: 0.04em;
}

.page-news__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--clr-neon);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-news__title {
  font-family: var(--font-headline);
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: var(--space-sm) 0 var(--space-md);
  color: var(--clr-text);
}

.page-news__lead {
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--clr-text-dim);
  margin-bottom: var(--space-md);
}

.page-news__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.page-news__hero-aside {
  display: grid;
  gap: var(--space-sm);
  align-content: center;
  position: relative;
  z-index: 1;
}

.page-news__metric {
  padding: var(--space-md);
  background: rgba(10, 43, 32, 0.78);
  border-left: 4px solid var(--clr-neon);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.page-news__metric--gold {
  border-left-color: var(--clr-gold);
}

.page-news__metric-num {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--h3);
  line-height: 1.1;
  color: var(--clr-neon);
}

.page-news__metric--gold .page-news__metric-num {
  color: var(--clr-gold);
}

.page-news__metric-label {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--clr-text-dim);
}

.page-news__reports,
.page-news__updates,
.page-news__specials {
  margin-top: var(--space-xl);
}

.page-news__section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--clr-neon);
}

.page-news__section-title {
  font-family: var(--font-headline);
  font-size: var(--h2);
  line-height: 1.1;
  margin: var(--space-xs) 0 0;
  color: var(--clr-text);
}

.page-news__timeline {
  position: relative;
}

.page-news__timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-neon) 0%, var(--clr-accent) 100%);
  opacity: 0.55;
}

.page-news__timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: var(--space-lg);
}

.page-news__timeline-item:last-child {
  margin-bottom: 0;
}

.page-news__timeline-marker {
  position: absolute;
  left: 0;
  top: 24px;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.page-news__marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-neon);
  border: 3px solid var(--clr-primary);
  box-shadow: 0 0 0 2px var(--clr-neon);
  z-index: 1;
}

.page-news__marker-dot--ghost {
  background: var(--clr-accent);
  box-shadow: 0 0 0 2px var(--clr-accent);
}

.page-news__marker-label {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.62rem;
  line-height: 1.3;
  color: var(--clr-text-dim);
  text-align: center;
  letter-spacing: 0.06em;
}

.page-news__post {
  background: linear-gradient(135deg, rgba(26, 92, 72, 0.92), rgba(11, 61, 46, 0.96));
  border: 2px solid rgba(45, 225, 167, 0.28);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.page-news__post:hover {
  transform: translateY(-3px);
  border-color: var(--clr-neon);
}

.page-news__post--split {
  display: grid;
  grid-template-columns: 1fr;
}

.page-news__post-media {
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--clr-neon);
}

.page-news__post-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-news__post--split .page-news__post-img {
  height: 100%;
  min-height: 220px;
}

.page-news__post-body {
  padding: var(--space-md);
}

.page-news__post-body--full {
  padding: var(--space-lg);
}

.page-news__post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.page-news__post-title {
  font-family: var(--font-headline);
  font-size: var(--h3);
  line-height: 1.2;
  margin: 0 0 var(--space-sm);
  color: var(--clr-text);
}

.page-news__post-excerpt {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--clr-text-dim);
}

.page-news__post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(45, 225, 167, 0.22);
}

.page-news__meta-chip {
  font-family: var(--font-data);
  font-size: 0.7rem;
  color: var(--clr-text-dim);
  background: rgba(10, 43, 32, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-news__updates-grid {
  display: grid;
  gap: var(--space-lg);
}

.page-news__featured {
  background: var(--clr-dark);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  display: flex;
  flex-direction: column;
}

.page-news__featured-media {
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--clr-gold);
}

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

.page-news__featured-body {
  padding: var(--space-lg);
}

.page-news__feature-list {
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-news__feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--clr-text);
}

.page-news__feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--clr-gold);
  border-bottom: 2px solid var(--clr-gold);
  transform: rotate(-45deg);
}

.page-news__update-log {
  background: rgba(26, 92, 72, 0.58);
  border: 2px solid var(--clr-primary-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  align-self: start;
}

.page-news__log-title {
  font-family: var(--font-headline);
  font-size: 1.16rem;
  margin: 0 0 var(--space-md);
  color: var(--clr-text);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--clr-neon);
}

.page-news__detail {
  border: 1px solid rgba(45, 225, 167, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  background: rgba(10, 43, 32, 0.45);
  transition: border-color 0.2s ease;
}

.page-news__detail:last-child {
  margin-bottom: 0;
}

.page-news__detail[open] {
  border-color: rgba(255, 215, 0, 0.5);
}

.page-news__detail summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--clr-text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.page-news__detail summary::before {
  content: "+";
  font-family: var(--font-data);
  font-size: 1rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.page-news__detail[open] summary::before {
  content: "–";
}

.page-news__detail p {
  padding: 0 var(--space-md) var(--space-sm);
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--clr-text-dim);
}

.page-news__special-grid {
  display: grid;
  gap: var(--space-lg);
}

.page-news__special {
  background: linear-gradient(135deg, rgba(26, 92, 72, 0.88), rgba(11, 61, 46, 0.94));
  border: 2px solid rgba(45, 225, 167, 0.28);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-box);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.page-news__special:hover {
  transform: translateY(-3px);
  border-color: var(--clr-gold);
}

.page-news__special-media {
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--clr-neon);
}

.page-news__special-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
}

.page-news__special-body {
  padding: var(--space-lg);
  flex: 1;
}

.page-news__trust {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-dark) 100%);
  border: 2px solid var(--clr-neon);
  border-radius: var(--radius-lg);
  position: relative;
}

.page-news__trust::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.page-news__trust-copy {
  position: relative;
  z-index: 1;
}

.page-news__trust-title {
  font-family: var(--font-headline);
  font-size: var(--h3);
  margin: 0 0 var(--space-sm);
  color: var(--clr-text);
}

.page-news__trust-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--clr-text-dim);
  max-width: 46ch;
}

.page-news__trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
  align-items: center;
}

.page-news__trust-stat {
  text-align: center;
}

.page-news__trust-num {
  display: block;
  font-family: var(--font-headline);
  font-size: var(--h3);
  line-height: 1.1;
  color: var(--clr-gold);
}

.page-news__trust-label {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--clr-text-dim);
}

.page-news__entry-index {
  margin-top: var(--space-xl);
}

.page-news__entry-title {
  font-family: var(--font-headline);
  font-size: var(--h2);
  margin: 0 0 var(--space-md);
  color: var(--clr-text);
}

.page-news__entry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.page-news__entry-link {
  flex: 1 1 200px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-md);
  background: rgba(26, 92, 72, 0.68);
  border: 2px solid var(--clr-primary-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--clr-text);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.page-news__entry-link:hover,
.page-news__entry-link:focus-visible {
  border-color: var(--clr-accent);
  background: var(--clr-primary);
  transform: translateY(-2px);
}

.page-news__entry-link strong {
  font-family: var(--font-headline);
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--clr-text);
}

.page-news__entry-link > span:last-child {
  font-size: 0.8rem;
  color: var(--clr-text-dim);
  line-height: 1.5;
}

@media (min-width: 480px) {
  .page-news__hero-aside {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news__post-img {
    height: 260px;
  }
}

@media (min-width: 700px) {
  .page-news__post--split {
    grid-template-columns: 240px 1fr;
  }

  .page-news__post--split .page-news__post-media {
    border-bottom: none;
    border-right: 2px solid var(--clr-neon);
  }

  .page-news__post--split .page-news__post-img {
    height: 100%;
    min-height: 240px;
  }

  .page-news__featured {
    flex-direction: row;
  }

  .page-news__featured-media {
    flex: 0 0 280px;
    border-bottom: none;
    border-right: 2px solid var(--clr-gold);
  }

  .page-news__featured-img {
    height: 100%;
    min-height: 280px;
  }

  .page-news__special-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }

  .page-news__entry-grid {
    gap: var(--space-md);
  }
}

@media (min-width: 900px) {
  .page-news__hero {
    grid-template-columns: 1.3fr 0.85fr;
    align-items: center;
    gap: var(--space-xl);
  }

  .page-news__hero-aside {
    grid-template-columns: 1fr;
  }

  .page-news__updates-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .page-news__trust {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .page-news__trust-stats {
    gap: var(--space-xl);
  }
}

@media (min-width: 1200px) {
  .page-news__post-img {
    height: 240px;
  }

  .page-news__special-img {
    height: 260px;
  }

  .page-news__featured-media {
    flex-basis: 320px;
  }
}
