.news-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(108, 92, 231, 0.24), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 206, 201, 0.18), transparent 32%),
    linear-gradient(180deg, #0b0c13 0%, #0f111d 42%, #090a10 100%);
}

/* ── Sticky header ── */

.news-top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.news-top-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.news-top app-logo {
  display: flex;
  --app-logo-font-size: 1.05rem;
  --app-logo-icon-size: 1.9rem;
  color: var(--color-text);
}

.news-top-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ── Main ── */

.news-main {
  position: relative;
  overflow: clip;
  padding: calc(var(--space-4xl) + 20px) 0 var(--space-4xl);
}

.news-shell { position: relative; }

.news-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 68px, 88px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
  pointer-events: none;
}

/* ── Hero ── */

.news-hero {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3xl);
}

.news-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-text) 40%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-hero-desc {
  max-width: 640px;
  color: rgba(232, 232, 240, 0.68);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ── Toolbar ── */

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.news-sources {
  display: flex;
  gap: var(--space-md);
}

.news-sources a {
  color: rgba(232, 232, 240, 0.5);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

.news-sources a:hover {
  color: rgba(232, 232, 240, 0.85);
}

/* ── Filter ── */

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: fit-content;
}

.news-filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(232, 232, 240, 0.5);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.news-filter-btn:hover {
  color: rgba(232, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.news-filter-btn.active {
  border-color: rgba(0, 206, 201, 0.35);
  background: rgba(0, 206, 201, 0.08);
  color: var(--color-accent-light);
  font-weight: 700;
}

/* ── Feed ── */

.news-feed { position: relative; z-index: 1; }

/* ── Shared badge ── */

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-badge-icon { font-size: 0.72rem; line-height: 1; }

.news-badge-blog {
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.25);
  color: rgba(168, 148, 255, 0.9);
}

.news-badge-release {
  background: rgba(0, 206, 201, 0.1);
  border: 1px solid rgba(0, 206, 201, 0.2);
  color: rgba(0, 230, 225, 0.9);
}

.news-badge-launch {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  color: rgba(250, 204, 21, 0.9);
}

/* ── Shared tag ── */

.news-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 232, 240, 0.5);
}

.news-tag-live {
  background: rgba(0, 255, 180, 0.1);
  border-color: rgba(0, 255, 180, 0.25);
  color: rgba(0, 255, 180, 0.95);
  animation: news-live-pulse 2.5s ease-in-out infinite;
}

@keyframes news-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}


/* ════════════════════════════════════════════
   LEAD STORY
   ════════════════════════════════════════════ */

.news-lead {
  display: block;
  position: relative;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

/* Glow orbs */
.news-lead::before,
.news-lead::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  transition: opacity 0.3s;
}

.news-lead::before { top: -60px; right: -60px; width: 320px; height: 320px; opacity: 0.7; }
.news-lead::after  { bottom: -80px; left: -60px; width: 240px; height: 240px; opacity: 0.4; filter: blur(24px); }

/* Blog lead */
.news-lead-blog {
  border-color: rgba(108, 92, 231, 0.15);
  background:
    linear-gradient(180deg, rgba(108, 92, 231, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), inset 0 1px 0 rgba(108, 92, 231, 0.12);
}
.news-lead-blog::before { background: radial-gradient(circle, rgba(108, 92, 231, 0.32), transparent 70%); }
.news-lead-blog::after  { background: radial-gradient(circle, rgba(108, 92, 231, 0.14), transparent 70%); }
.news-lead-blog:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), 0 0 50px rgba(108, 92, 231, 0.1), inset 0 1px 0 rgba(108, 92, 231, 0.18);
}

/* Release lead */
.news-lead-release {
  border-color: rgba(0, 206, 201, 0.12);
  background:
    linear-gradient(180deg, rgba(0, 206, 201, 0.05), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), inset 0 1px 0 rgba(0, 206, 201, 0.1);
}
.news-lead-release::before { background: radial-gradient(circle, rgba(0, 206, 201, 0.25), transparent 70%); }
.news-lead-release::after  { background: radial-gradient(circle, rgba(0, 206, 201, 0.12), transparent 70%); }
.news-lead-release:hover {
  border-color: rgba(0, 206, 201, 0.28);
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), 0 0 50px rgba(0, 206, 201, 0.08), inset 0 1px 0 rgba(0, 206, 201, 0.16);
}

/* Launch lead */
.news-lead-launch {
  border-color: rgba(250, 204, 21, 0.1);
  background:
    linear-gradient(180deg, rgba(250, 204, 21, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(16, 19, 31, 0.98), rgba(9, 10, 18, 0.96));
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), inset 0 1px 0 rgba(250, 204, 21, 0.08);
}
.news-lead-launch::before { background: radial-gradient(circle, rgba(250, 204, 21, 0.22), transparent 70%); }
.news-lead-launch::after  { background: radial-gradient(circle, rgba(250, 204, 21, 0.1), transparent 70%); }
.news-lead-launch:hover {
  border-color: rgba(250, 204, 21, 0.25);
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), 0 0 50px rgba(250, 204, 21, 0.06), inset 0 1px 0 rgba(250, 204, 21, 0.14);
}

/* Live lead */
.news-lead-live {
  border-color: rgba(0, 255, 180, 0.25);
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), 0 0 40px rgba(0, 255, 180, 0.06), inset 0 1px 0 rgba(0, 255, 180, 0.12);
}
.news-lead-live::before { background: radial-gradient(circle, rgba(0, 255, 180, 0.28), transparent 70%) !important; }
.news-lead-live::after  { background: radial-gradient(circle, rgba(0, 255, 180, 0.12), transparent 70%) !important; }
.news-lead-live:hover {
  border-color: rgba(0, 255, 180, 0.4);
  box-shadow: 0 28px 70px rgba(2, 5, 14, 0.42), 0 0 60px rgba(0, 255, 180, 0.12), inset 0 1px 0 rgba(0, 255, 180, 0.18);
}
.news-lead:hover::before { opacity: 1; }
.news-lead:hover::after { opacity: 0.7; }

/* Lead content */
.news-lead-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.news-lead-date {
  color: rgba(232, 232, 240, 0.4);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
}

.news-lead-detail {
  color: rgba(232, 232, 240, 0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-lead-detail::before {
  content: '\00B7';
  margin-right: var(--space-sm);
  color: rgba(232, 232, 240, 0.2);
}

.news-lead-title {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  transition: color 0.2s;
}

.news-lead:hover .news-lead-title { color: #fff; }

.news-lead-summary {
  position: relative;
  color: rgba(232, 232, 240, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.news-lead-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent-light);
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
}

.news-lead:hover .news-lead-cta { opacity: 1; gap: var(--space-sm); }


/* ════════════════════════════════════════════
   BLOG CARD, editorial, long-form feel
   Purple atmosphere, left accent bar, read CTA
   ════════════════════════════════════════════ */

.news-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-xl) var(--space-lg) calc(var(--space-xl) + 4px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(108, 92, 231, 0.12);
  background:
    linear-gradient(180deg, rgba(108, 92, 231, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(14, 16, 28, 0.96), rgba(9, 10, 18, 0.98));
  box-shadow:
    0 12px 40px rgba(2, 5, 14, 0.3),
    inset 0 1px 0 rgba(108, 92, 231, 0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

/* Purple accent bar, left edge */
.news-blog-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.6), rgba(108, 92, 231, 0.15));
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

/* Glow orb */
.news-blog-card-glow {
  position: absolute;
  top: -40px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.16), transparent);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.news-blog-card:hover {
  border-color: rgba(108, 92, 231, 0.28);
  box-shadow:
    0 16px 50px rgba(2, 5, 14, 0.35),
    0 0 40px rgba(108, 92, 231, 0.08),
    inset 0 1px 0 rgba(108, 92, 231, 0.14);
}

.news-blog-card:hover .news-blog-card-glow { opacity: 1; }

.news-blog-card-top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.news-blog-card-date {
  color: rgba(232, 232, 240, 0.35);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-blog-card-title {
  position: relative;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.news-blog-card:hover .news-blog-card-title { color: #fff; }

.news-blog-card-summary {
  position: relative;
  color: rgba(232, 232, 240, 0.45);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-blog-card-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(108, 92, 231, 0.08);
}

.news-blog-card-meta {
  color: rgba(168, 148, 255, 0.5);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.news-blog-card-cta {
  color: rgba(168, 148, 255, 0.5);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.news-blog-card:hover .news-blog-card-cta {
  color: rgba(168, 148, 255, 0.9);
  gap: var(--space-sm);
}


/* ════════════════════════════════════════════
   RELEASE CARD, compact, technical, data-first
   Cyan atmosphere, prominent version number
   ════════════════════════════════════════════ */

.news-release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 206, 201, 0.1);
  background:
    linear-gradient(180deg, rgba(0, 206, 201, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(14, 16, 28, 0.96), rgba(9, 10, 18, 0.98));
  box-shadow:
    0 12px 40px rgba(2, 5, 14, 0.3),
    inset 0 1px 0 rgba(0, 206, 201, 0.06);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

/* Cyan top edge */
.news-release-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 206, 201, 0.4) 30%, rgba(0, 206, 201, 0.4) 70%, transparent);
  border-radius: 0 0 2px 2px;
}

.news-release-card:hover {
  border-color: rgba(0, 206, 201, 0.24);
  box-shadow:
    0 16px 50px rgba(2, 5, 14, 0.35),
    0 0 40px rgba(0, 206, 201, 0.06),
    inset 0 1px 0 rgba(0, 206, 201, 0.12);
}

.news-release-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.news-release-card-version {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(0, 230, 225, 0.85);
  transition: color 0.2s;
}

.news-release-card:hover .news-release-card-version {
  color: rgba(0, 230, 225, 1);
}

.news-release-card-summary {
  color: rgba(232, 232, 240, 0.4);
  font-size: var(--font-size-sm);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-release-card-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0, 206, 201, 0.06);
}

.news-release-card-stat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(0, 230, 225, 0.55);
  padding: 0.15rem 0.55rem;
  background: rgba(0, 206, 201, 0.06);
  border: 1px solid rgba(0, 206, 201, 0.1);
  border-radius: 999px;
  white-space: nowrap;
}

.news-release-card-date {
  color: rgba(232, 232, 240, 0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.news-release-card-arrow {
  margin-left: auto;
  color: rgba(0, 230, 225, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  transition: color 0.2s;
}

.news-release-card:hover .news-release-card-arrow {
  color: rgba(0, 230, 225, 0.7);
}


/* ════════════════════════════════════════════
   LAUNCH CARD, announcement, event-poster feel
   Gold atmosphere, status indicator, bold title
   ════════════════════════════════════════════ */

.news-launch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(250, 204, 21, 0.08);
  background:
    linear-gradient(180deg, rgba(250, 204, 21, 0.03), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(14, 16, 28, 0.96), rgba(9, 10, 18, 0.98));
  box-shadow:
    0 12px 40px rgba(2, 5, 14, 0.3),
    inset 0 1px 0 rgba(250, 204, 21, 0.05);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

/* Corner accent, diagonal gold flare */
.news-launch-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.1), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.news-launch-card:hover {
  border-color: rgba(250, 204, 21, 0.2);
  box-shadow:
    0 16px 50px rgba(2, 5, 14, 0.35),
    0 0 36px rgba(250, 204, 21, 0.05),
    inset 0 1px 0 rgba(250, 204, 21, 0.1);
}

.news-launch-card:hover::after { opacity: 1; }

/* Live state, green energy */
.news-launch-card-live {
  border-color: rgba(0, 255, 180, 0.18);
  background:
    linear-gradient(180deg, rgba(0, 255, 180, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(14, 16, 28, 0.96), rgba(9, 10, 18, 0.98));
  box-shadow:
    0 12px 40px rgba(2, 5, 14, 0.3),
    0 0 30px rgba(0, 255, 180, 0.04),
    inset 0 1px 0 rgba(0, 255, 180, 0.08);
}

.news-launch-card-live::after {
  background: radial-gradient(circle, rgba(0, 255, 180, 0.12), transparent 70%);
}

.news-launch-card-live:hover {
  border-color: rgba(0, 255, 180, 0.32);
  box-shadow:
    0 16px 50px rgba(2, 5, 14, 0.35),
    0 0 50px rgba(0, 255, 180, 0.08),
    inset 0 1px 0 rgba(0, 255, 180, 0.14);
}

.news-launch-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.news-launch-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-launch-card-status-live {
  color: rgba(0, 255, 180, 0.9);
}

.news-launch-card-status-done {
  color: rgba(232, 232, 240, 0.4);
}

.news-launch-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 255, 180, 0.9);
  box-shadow: 0 0 8px rgba(0, 255, 180, 0.5);
  animation: news-live-pulse 2s ease-in-out infinite;
}

.news-launch-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}

.news-launch-card:hover .news-launch-card-title { color: #fff; }

.news-launch-card-subtitle {
  color: rgba(232, 232, 240, 0.4);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-launch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(250, 204, 21, 0.06);
}

.news-launch-card-live .news-launch-card-footer {
  border-top-color: rgba(0, 255, 180, 0.06);
}

.news-launch-card-date {
  color: rgba(232, 232, 240, 0.3);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.news-launch-card-arrow {
  color: rgba(250, 204, 21, 0.3);
  font-size: 0.9rem;
  transition: color 0.25s, transform 0.25s;
}

.news-launch-card:hover .news-launch-card-arrow {
  color: rgba(250, 204, 21, 0.7);
  transform: translateX(3px);
}

.news-launch-card-live .news-launch-card-arrow { color: rgba(0, 255, 180, 0.3); }
.news-launch-card-live:hover .news-launch-card-arrow { color: rgba(0, 255, 180, 0.7); }


/* ════════════════════════════════════════════
   LAYOUT: newspaper top + editorial grid
   ════════════════════════════════════════════ */

/* Top section: 2-col main + sidebar, upgrades to 3-col when sidebar exists */
.news-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.news-top-section.has-sidebar {
  grid-template-columns: 2fr 2fr 1fr;
}

.news-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Month grids: varied 3-col with mixed spans */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.news-span-2 { grid-column: span 2; }

.news-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent);
  margin: var(--space-xl) 0 0;
}

.news-section-date {
  color: rgba(232, 232, 240, 0.35);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-top: calc(-0.55em - 3px);
  margin-bottom: var(--space-lg);
}

.news-section-date span {
  background: #0b0c13;
  padding: 0 var(--space-md);
}



/* ── Empty state ── */

.news-empty {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.025), transparent),
    rgba(12, 14, 24, 0.6);
  text-align: center;
}

.news-empty h2 { font-size: var(--font-size-lg); color: rgba(232, 232, 240, 0.6); }
.news-empty p { margin-top: var(--space-sm); color: rgba(232, 232, 240, 0.4); }


/* ── Responsive ── */

@media (max-width: 768px) {
  .news-top-section,
  .news-top-section.has-sidebar { grid-template-columns: 1fr 1fr; }
  .news-sidebar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-span-2 { grid-column: span 2; }
}

@media (max-width: 640px) {
  .news-top-inner { min-height: 62px; }

  .news-top-section,
  .news-top-section.has-sidebar { grid-template-columns: 1fr; }
  .news-sidebar { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-span-2 { grid-column: span 1; }

  .news-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-filter {
    width: auto;
    border-radius: var(--radius-lg);
  }

  .news-lead { padding: var(--space-xl); }
  .news-lead-title { font-size: 1.5rem; }

  .news-blog-card,
  .news-release-card,
  .news-launch-card { padding: var(--space-lg); }

  .news-release-card-version { font-size: 1.1rem; }
}
