/* ============================================
   NEWS — archive + article detail
   Premium design with animated doodles.
   ============================================ */

.news,
.news-article {
  --ink:          #0f172a;
  --ink-2:        #475569;
  --mute:         #64748b;
  --line:         #e2e8f0;
  --line-soft:    #eef2f7;
  --bg:           #fafbff;

  --accent:       #5b3df5;
  --accent-2:     #f59e0b;
  --accent-soft:  rgba(91, 61, 245, 0.10);

  /* Per-article accent palettes (resolved by class) */
  --c1:           var(--accent);
  --c2:           var(--accent-2);
  --c-soft:       var(--accent-soft);

  background: var(--bg);
  color: var(--ink);
  padding-bottom: clamp(60px, 8vw, 110px);
}

/* Accent token classes — applied on .news-card / .news-featured-card / .news-article */
.news-accent--violet  { --c1: #7c3aed; --c2: #f0abfc; --c-soft: rgba(124, 58, 237, 0.10); }
.news-accent--emerald { --c1: #059669; --c2: #6ee7b7; --c-soft: rgba(5, 150, 105, 0.10); }
.news-accent--amber   { --c1: #d97706; --c2: #fde68a; --c-soft: rgba(217, 119, 6, 0.12); }
.news-accent--sky     { --c1: #0284c7; --c2: #93c5fd; --c-soft: rgba(2, 132, 199, 0.10); }
.news-accent--rose    { --c1: #e11d48; --c2: #fda4af; --c-soft: rgba(225, 29, 72, 0.10); }
.news-accent--cyan    { --c1: #0891b2; --c2: #67e8f9; --c-soft: rgba(8, 145, 178, 0.10); }

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- ARCHIVE HERO ---------- */
.news-hero {
  position: relative;
  padding: clamp(112px, 12vw, 150px) 24px clamp(50px, 6vw, 90px);
  text-align: center;
  background:
    radial-gradient(900px 380px at 18% 22%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(800px 380px at 82% 28%, rgba(245, 158, 11, 0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3eeff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.news-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.news-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.7;
  animation: newsFloat 10s ease-in-out infinite;
}
.news-orb--a {
  top: -80px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
}
.news-orb--b {
  top: 40px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #fde68a, transparent 70%);
  animation-duration: 13s;
  animation-direction: alternate;
}
.news-orb--c {
  bottom: -120px;
  left: 30%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #a5f3fc, transparent 70%);
  animation-duration: 16s;
}

/* SVG doodles — subtle floating / rotating */
.news-doodle {
  position: absolute;
  color: rgba(124, 58, 237, 0.45);
  width: 90px;
  height: 90px;
  opacity: 0.55;
}
.news-doodle--book {
  top: 18%;
  left: 7%;
  width: 64px;
  height: 64px;
  color: rgba(225, 29, 72, 0.42);
  animation: newsBob 6s ease-in-out infinite;
}
.news-doodle--cap {
  top: 14%;
  right: 9%;
  width: 80px;
  height: 80px;
  color: rgba(2, 132, 199, 0.45);
  animation: newsBob 7s ease-in-out infinite reverse;
}
.news-doodle--paper {
  bottom: 14%;
  left: 12%;
  width: 56px;
  height: 56px;
  color: rgba(217, 119, 6, 0.55);
  animation: newsSpin 18s linear infinite;
}
.news-doodle--star {
  bottom: 18%;
  right: 14%;
  width: 50px;
  height: 50px;
  color: rgba(245, 158, 11, 0.6);
  animation: newsTwinkle 3.2s ease-in-out infinite;
}
.news-doodle--squiggle {
  top: 50%;
  left: 50%;
  width: 220px;
  height: 60px;
  transform: translate(-50%, -50%);
  color: rgba(124, 58, 237, 0.18);
  opacity: 0.7;
}
.news-doodle--squiggle path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: newsDraw 3.8s ease-out forwards 0.3s;
}

@keyframes newsFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-22px) translateX(14px); }
}
@keyframes newsBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-12px) rotate(4deg); }
}
@keyframes newsSpin {
  to { transform: rotate(360deg); }
}
@keyframes newsTwinkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 0.6; }
  50%      { transform: scale(1.2) rotate(20deg); opacity: 1; }
}
@keyframes newsDraw {
  to { stroke-dashoffset: 0; }
}

.news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.news-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: #ffffff;
  border: 1px solid #e6dffa;
  color: #5b3df5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(91, 61, 245, 0.35);
}
.news-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
  animation: newsPulse 2s ease-in-out infinite;
}
@keyframes newsPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); }
}

.news-hero__title {
  margin: 18px 0 14px;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.news-hero__title-accent {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 60%, #f59e0b 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}
.news-hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(245, 158, 11, 0.22);
  border-radius: 6px;
  z-index: -1;
}
.news-hero__tagline {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: var(--ink-2);
  max-width: 660px;
  margin: 0 auto 26px;
  line-height: 1.6;
}

.news-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.news-hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 18px -14px rgba(15, 23, 42, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.news-hero__stats li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px -16px rgba(124, 58, 237, 0.4);
}
.news-hero__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.10);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.news-hero__stats strong {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.news-hero__stats span {
  font-size: 0.74rem;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- FEATURED ARTICLE ---------- */
.news-featured {
  padding: 36px 24px 8px;
}
.news-featured__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.news-featured-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(124, 58, 237, 0.4);
}

.news-featured-card__visual {
  position: relative;
  background:
    linear-gradient(135deg, var(--c-soft), transparent 60%),
    linear-gradient(135deg, var(--c1) 0%, color-mix(in srgb, var(--c2) 60%, var(--c1)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.news-featured-card__icon-wrap {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  backdrop-filter: blur(8px);
  color: #ffffff;
  animation: newsBob 6s ease-in-out infinite;
}
.news-featured-card__icon-wrap svg { width: 58px; height: 58px; }

.news-featured-card__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.2);
}
.news-featured-card__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.news-featured-card__shape--a { width: 200px; height: 200px; top: -60px; right: -60px; }
.news-featured-card__shape--b { width: 140px; height: 140px; bottom: -50px; left: -40px; background: rgba(255, 255, 255, 0.08); }
.news-featured-card__shape--c { width: 80px; height: 80px; bottom: 20%; right: 18%; background: rgba(255, 255, 255, 0.18); animation: newsTwinkle 4s ease-in-out infinite; }

.news-featured-card__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.news-featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.news-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-soft);
  color: var(--c1);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.news-meta-dot { color: var(--mute); }

.news-featured-card__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.news-featured-card__title a { color: inherit; text-decoration: none; }
.news-featured-card__title a:hover { color: var(--c1); }

.news-featured-card__excerpt {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.98rem;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--c1);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  align-self: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 24px -12px var(--c1);
}
.news-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px var(--c1);
}

/* ---------- TOOLBAR / FILTER CHIPS ---------- */
.news-toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 14px -10px rgba(15, 23, 42, 0.18);
  margin-top: 32px;
}
.news-toolbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.news-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.news-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.news-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.news-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.news-chip__count {
  padding: 1px 7px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.news-chip.is-active .news-chip__count {
  background: rgba(255, 255, 255, 0.22);
}
.news-toolbar__count {
  font-size: 0.88rem;
  color: var(--ink-2);
}
.news-toolbar__count strong { color: var(--ink); font-weight: 700; }

/* ---------- GRID ---------- */
.news-grid-section {
  padding: 36px 24px 8px;
}
.news-grid-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.news-section-title {
  margin: 0 0 22px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  box-shadow: 0 8px 22px -14px rgba(15, 23, 42, 0.16);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -18px rgba(124, 58, 237, 0.4);
  border-color: var(--c1);
}
.news-card[hidden] { display: none; }

.news-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, var(--c-soft), transparent 70%),
    linear-gradient(135deg, var(--c1) 0%, color-mix(in srgb, var(--c2) 65%, var(--c1)) 100%);
  overflow: hidden;
  text-decoration: none;
}
.news-card__icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  backdrop-filter: blur(8px);
  color: #ffffff;
  transition: transform 0.25s ease;
}
.news-card:hover .news-card__icon-wrap {
  transform: translate(-50%, -50%) rotate(-6deg) scale(1.06);
}
.news-card__icon-wrap svg { width: 40px; height: 40px; }

.news-card__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.news-card__shape--a { width: 140px; height: 140px; top: -50px; right: -50px; }
.news-card__shape--b { width: 80px; height: 80px; bottom: -30px; left: -20px; background: rgba(255, 255, 255, 0.10); }

.news-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--ink-2);
}
.news-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__title a:hover { color: var(--c1); }
.news-card__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-card__read {
  font-size: 0.78rem;
  color: var(--mute);
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c1);
  text-decoration: none;
  transition: gap 0.15s ease;
}
.news-card__link:hover { gap: 10px; }

/* ---------- EMPTY STATE ---------- */
.news-empty {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 2px dashed var(--line);
  border-radius: 18px;
}
.news-empty__icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 12px;
  animation: newsBob 4s ease-in-out infinite;
}
.news-empty h3 { margin: 0 0 6px; font-size: 1.15rem; }
.news-empty p { margin: 0 0 18px; color: var(--ink-2); }
.news-empty__cta {
  padding: 10px 18px;
  background: var(--accent);
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
.news-empty__cta:hover { transform: translateY(-1px); }

/* ---------- ARCHIVE BOTTOM SUBSCRIBE PANEL ---------- */
.news-subscribe {
  display: block;
  margin-top: 60px;
  padding: 0 24px;
}
.news-subscribe__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(800px 380px at 0% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(135deg, #5b3df5 0%, #ec4899 60%, #f59e0b 120%);
  color: #ffffff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  box-shadow: 0 30px 60px -32px rgba(91, 61, 245, 0.6);
  position: relative;
  overflow: hidden;
}
.news-subscribe__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 280px at 100% 100%, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.news-subscribe__copy { position: relative; z-index: 1; }
.news-subscribe__kicker {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.news-subscribe__copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.news-subscribe__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  font-size: 0.96rem;
}

.news-subscribe__form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
  border-radius: 14px;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.3);
}
.news-subscribe__form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  background: transparent;
  font-size: 0.95rem;
  color: var(--ink);
}
.news-subscribe__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--ink);
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.news-subscribe__btn:hover { transform: translateY(-1px); }

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.news-article {
  padding-bottom: clamp(60px, 8vw, 110px);
}
.news-article__hero {
  position: relative;
  padding: clamp(112px, 12vw, 150px) 24px clamp(36px, 5vw, 64px);
  background:
    radial-gradient(900px 380px at 12% 30%, var(--c-soft), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.news-article__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.news-article__hero-bg .news-orb--a {
  width: 280px; height: 280px;
  top: -60px; left: -100px;
  background: radial-gradient(circle, var(--c2), transparent 70%);
  opacity: 0.55;
}
.news-article__hero-bg .news-orb--b {
  width: 240px; height: 240px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, var(--c1), transparent 70%);
  opacity: 0.30;
}
.news-article__hero-bg .news-doodle {
  color: color-mix(in srgb, var(--c1) 50%, transparent);
}
.news-article__hero-bg .news-doodle--squiggle {
  top: 35%;
  right: 5%;
  left: auto;
  transform: none;
  width: 200px;
}
.news-article__hero-bg .news-doodle--star {
  bottom: 20%;
  right: 12%;
  width: 36px;
  height: 36px;
}

.news-article__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.news-article__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.news-article__crumbs a {
  color: var(--c1);
  text-decoration: none;
}
.news-article__crumbs a:hover { text-decoration: underline; }
.news-article__crumbs span[aria-hidden] { color: var(--mute); }

.news-article__hero-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.news-article__hero-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c1) 0%, color-mix(in srgb, var(--c2) 60%, var(--c1)) 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px -12px var(--c1);
  flex-shrink: 0;
  animation: newsBob 6s ease-in-out infinite;
}
.news-article__hero-icon svg { width: 28px; height: 28px; }
.news-article__hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.news-article__title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.news-article__subtitle {
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 720px;
}

.news-article__byline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
}
.news-article__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), color-mix(in srgb, var(--c2) 60%, var(--c1)));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.news-article__byline-text {
  display: flex;
  flex-direction: column;
}
.news-article__author {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.news-article__author-role {
  font-size: 0.78rem;
  color: var(--mute);
}
.news-article__updated {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--mute);
}

/* ---------- ARTICLE BODY ---------- */
.news-article__body-wrap {
  padding: 40px 24px;
}
.news-article__body-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.news-article__sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-side-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.news-side-card__title {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mute);
  font-weight: 700;
}
.news-toc {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.news-toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
}
.news-toc a:hover {
  background: var(--c-soft);
  color: var(--c1);
  border-left-color: var(--c1);
}

.news-key-dates {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-key-dates li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line-soft);
}
.news-key-dates li:last-child { border-bottom: 0; padding-bottom: 0; }
.news-key-dates__label {
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.news-key-dates__value {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.news-side-card--cta {
  background: linear-gradient(135deg, var(--c1) 0%, color-mix(in srgb, var(--c2) 65%, var(--c1)) 100%);
  color: #ffffff;
  border: 0;
}
.news-side-card--cta h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}
.news-side-card--cta p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  line-height: 1.5;
}
.news-side-card__btn {
  display: block;
  text-align: center;
  padding: 9px 14px;
  background: #ffffff;
  color: var(--c1);
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: transform 0.15s ease;
}
.news-side-card__btn:hover { transform: translateY(-1px); }
.news-side-card__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}
.news-side-card__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* prose */
.news-article__body {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
}
.news-article__body > h2 {
  margin: 32px 0 14px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  scroll-margin-top: 80px;
  position: relative;
  padding-left: 14px;
}
.news-article__body > h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  bottom: 0.4em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--c1), var(--c2));
}
.news-article__body > h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.news-article__body > p {
  margin: 0 0 16px;
}
.news-article__body strong { color: var(--ink); font-weight: 700; }
.news-article__body a {
  color: var(--c1);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.news-article__lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  padding: 16px 20px;
  background: var(--c-soft);
  border-left: 4px solid var(--c1);
  border-radius: 0 12px 12px 0;
  margin: 0 0 24px !important;
}

.news-prose-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.news-prose-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  line-height: 1.65;
}
.news-prose-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--c1);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-soft);
}

.news-highlights {
  background: linear-gradient(135deg, var(--c-soft) 0%, transparent 100%);
  border: 1px solid color-mix(in srgb, var(--c1) 25%, var(--line));
  border-radius: 16px;
  padding: 20px 24px;
  margin: 0 0 28px;
}
.news-highlights h2 {
  margin: 0 0 14px;
  font-size: 0.78rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c1);
  padding-left: 0 !important;
}
.news-highlights h2::before { display: none; }
.news-highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.news-highlights li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}
.news-highlights__check {
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  background: var(--c1);
  color: #ffffff;
  border-radius: 50%;
}
.news-highlights__check svg { width: 12px; height: 12px; }

.news-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 18px 0 22px;
  border: 1px solid var(--line);
}
.news-callout p { margin: 0; line-height: 1.6; font-size: 0.96rem; }
.news-callout__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.news-callout__icon svg { width: 18px; height: 18px; }
.news-callout--info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}
.news-callout--info .news-callout__icon { background: #dbeafe; color: #2563eb; }
.news-callout--warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #854d0e;
}
.news-callout--warning .news-callout__icon { background: #fef3c7; color: #ca8a04; }
.news-callout--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.news-callout--success .news-callout__icon { background: #d1fae5; color: #059669; }

.news-table-wrap {
  overflow-x: auto;
  margin: 18px 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.news-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.news-table th,
.news-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}
.news-table th {
  background: var(--c-soft);
  color: var(--c1);
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid color-mix(in srgb, var(--c1) 25%, var(--line));
}
.news-table tbody tr:last-child td { border-bottom: 0; }
.news-table tbody tr:hover td { background: rgba(124, 58, 237, 0.03); }

/* FAQs */
.news-faqs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}
.news-faq {
  background: #fafbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.news-faq[open] {
  border-color: var(--c1);
  background: #ffffff;
  box-shadow: 0 8px 18px -14px rgba(124, 58, 237, 0.4);
}
.news-faq summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--ink);
  position: relative;
  list-style: none;
  padding-right: 44px;
}
.news-faq summary::-webkit-details-marker { display: none; }
.news-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--c-soft);
  color: var(--c1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.news-faq[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.news-faq__a {
  padding: 0 18px 16px;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 0.94rem;
}

.news-article__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.news-article__tags-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mute);
  font-weight: 700;
  margin-right: 4px;
}
.news-article__tag {
  padding: 5px 12px;
  background: var(--c-soft);
  color: var(--c1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.news-article__share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}
.news-article__share span {
  font-size: 0.84rem;
  color: var(--mute);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.news-article__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-soft);
  color: var(--c1);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.news-article__share a:hover {
  background: var(--c1);
  color: #ffffff;
  transform: translateY(-2px);
}
.news-article__share svg { width: 16px; height: 16px; }

/* Related */
.news-related {
  padding: 0 24px;
  margin-top: 40px;
}
.news-related__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.news-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}
.news-related__head h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.news-related__view-all {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.news-related__view-all:hover { text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-featured-card { grid-template-columns: 1fr; }
  .news-featured-card__visual { min-height: 220px; }
  .news-article__body-inner { grid-template-columns: 1fr; }
  .news-article__sidebar { position: static; order: 2; }
  .news-article__body { order: 1; }
  .news-subscribe__inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .news-hero { padding: clamp(96px, 22vw, 130px) 18px 50px; }
  .news-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: 1fr; }
  .news-doodle { display: none; }
  .news-doodle--squiggle, .news-doodle--star { display: block; }
  .news-toolbar__inner { flex-direction: column; align-items: flex-start; }
  .news-article__body-wrap { padding: 24px 16px; }
  .news-article__body { padding: 22px 18px; }
  .news-article__hero { padding: clamp(96px, 22vw, 130px) 18px 36px; }
  .news-article__updated { width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .news-orb,
  .news-doodle,
  .news-hero__pulse,
  .news-card__icon-wrap,
  .news-featured-card__icon-wrap,
  .news-article__hero-icon,
  .news-empty__icon { animation: none !important; }
  .news-card,
  .news-cta,
  .news-side-card__btn { transition: none !important; }
}
