.news-post-shell {
  padding: 54px 0 64px;
}

.news-post-wrap {
  width: min(920px, 94%);
  margin: 0 auto;
}

.news-post-card {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(83, 224, 194, 0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(109, 141, 255, 0.16), transparent 34%),
    var(--card);
}

.news-post-hero {
  padding: 30px 30px 22px;
  border-bottom: 1px solid var(--border);
}

.news-post-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(83, 224, 194, 0.3);
  background: rgba(83, 224, 194, 0.08);
  color: var(--brand-2);
  font-size: 0.86rem;
  font-weight: 700;
}

.news-post-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 6px rgba(83, 224, 194, 0.12);
}

.news-post-title {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
}

.news-post-lead {
  margin: 0;
  color: #dce7ff;
  font-size: 1.05rem;
  line-height: 1.9;
  text-align: justify;
}

.news-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.news-post-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.news-post-body {
  padding: 28px 30px 34px;
}

.news-post-body p {
  margin: 0 0 18px;
  color: #edf3ff;
  line-height: 2;
  font-size: 1.05rem;
  text-align: justify;
}

.news-post-highlight {
  margin: 24px 0;
  padding: 18px 20px;
  border-right: 4px solid var(--brand);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(109, 141, 255, 0.14), rgba(83, 224, 194, 0.08));
  text-align: justify;
}

.news-post-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.news-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 680px) {
  .news-post-hero,
  .news-post-body {
    padding: 22px 18px;
  }

  .news-post-title {
    font-size: 1.7rem;
  }

  .news-post-body p,
  .news-post-lead {
    font-size: 1rem;
  }
}
