/* Bipolar Tracker — article pages (marketing layout) */
:root {
  --navy: #0c0f1a;
  --navy-mid: #12182a;
  --navy-card: rgba(22, 28, 48, 0.72);
  --white: #ffffff;
  --paper: #f7f8fc;
  --ink: #1a1d2e;
  --ink-muted: #5c6178;
  --purple: #8b5cf6;
  --purple-deep: #6d5cff;
  --purple-light: #c4b5fd;
  --purple-pale: #ede9fe;
  --purple-wash: #f3f0ff;
  --border: #e4e2ef;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --header-h: 64px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body.article-page {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--purple-deep);
}

/* —— Site header —— */
.article-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: var(--navy);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.article-site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  margin-right: auto;
}

.article-brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.article-site-header__nav {
  display: none;
  gap: 1.75rem;
}

.article-site-header__nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.article-site-header__nav a:hover,
.article-site-header__nav a.is-active {
  color: var(--white);
}

.article-site-header__nav a.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--purple);
}

.article-site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  background: linear-gradient(135deg, var(--purple-deep), #7c3aed);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(109, 92, 255, 0.35);
}

.article-site-header__cta:hover {
  filter: brightness(1.08);
}

@media (min-width: 900px) {
  .article-site-header__nav {
    display: flex;
  }
}

/* —— Hero —— */
.article-hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #0a0d18 0%, #141b32 45%, #1a1040 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.article-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
}

@media (min-width: 960px) {
  .article-hero__inner {
    grid-template-columns: 1fr min(320px, 34%);
    align-items: start;
    padding-bottom: 2.75rem;
  }
}

.article-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.article-hero__eyebrow svg {
  color: var(--purple-light);
}

.article-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.article-hero__title-accent {
  font-style: normal;
  color: var(--purple-light);
}

.article-hero__lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.article-hero__read {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.article-hero__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}

.article-hero__action:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.article-hero__toc-card {
  padding: 1.35rem 1.4rem;
  background: #161d33;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 14px;
}

.article-hero__toc-title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.article-hero__toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-hero__toc-list li {
  margin: 0;
}

.article-hero__toc-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.article-hero__toc-list li:last-child a {
  border-bottom: none;
}

.article-hero__toc-list a:hover {
  color: var(--purple-light);
}

.article-hero__toc-list svg {
  flex-shrink: 0;
  color: var(--purple);
  opacity: 0.9;
}

/* —— White content band (below hero) —— */
.article-below-hero {
  position: relative;
  z-index: 2;
  background: var(--white);
  clear: both;
  margin-top: 0;
}

/* —— Highlights bar —— */
.article-highlights {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.article-highlights__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
}

@media (min-width: 640px) {
  .article-highlights__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article-highlights__inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}

.article-highlights__item {
  text-align: center;
}

.article-highlights__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  background: var(--purple-wash);
  color: var(--purple-deep);
}

.article-highlights__label {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.article-highlights__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* —— Main layout + comments (explicit rows — areas break in some browsers) —— */
.article-layout-wrap {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  background: var(--white);
  grid-template-columns: 1fr;
}

.article-main {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.article-comments-block {
  grid-column: 1;
  grid-row: 2;
}

.article-sidebar {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  max-width: 300px;
  justify-self: center;
}

@media (min-width: 1024px) {
  .article-layout-wrap {
    grid-template-columns: minmax(0, 1fr) 300px;
    grid-template-rows: auto auto;
    column-gap: 3rem;
    row-gap: 2.5rem;
    align-items: start;
  }

  .article-main {
    grid-column: 1;
    grid-row: 1;
  }

  .article-sidebar {
    grid-column: 2;
    grid-row: 1 / 3;
    max-width: none;
    justify-self: stretch;
    align-self: start;
  }

  /* Column 1 only — sidebar stays in col 2 so its cards do not sit on the border */
  .article-comments-block {
    grid-column: 1;
    grid-row: 2;
  }
}

.article-layout-wrap,
.article-below-hero {
  overflow: visible;
}

.article-main {
  min-width: 0;
}

.article-main > p {
  margin: 0 0 1.15rem;
  color: var(--ink);
}

/* Draft preview / plain body blocks before full build */
.article-main > h2,
.article-section__title {
  margin: 2.5rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.article-main > h3,
.article-subhead {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.article-main > ul,
.article-main > ol,
.article-section__body ul,
.article-section__body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
  color: var(--ink);
}

.article-preview-banner {
  margin: 0;
  padding: 10px 16px;
  background: #3d2e14;
  color: #f5e6c8;
  font: 500 14px/1.45 var(--sans);
  text-align: center;
  border-bottom: 1px solid #6b5428;
}

.article-preview-faq-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.article-faq__item {
  margin-bottom: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
}

.article-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}

.article-faq__item p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
}

/* —— Sections —— */
.article-section {
  margin-bottom: 2.75rem;
}

.article-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.article-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--purple-wash);
  color: var(--purple-deep);
  border: 1px solid var(--purple-pale);
}

.article-section__title {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

.article-section__body p {
  margin: 0 0 1.1rem;
}

.article-subhead {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Reason cards (accordion) */
.article-reason-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.article-reason-card {
  width: 100%;
  text-align: left;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.article-reason-card:hover {
  border-color: var(--purple-pale);
  box-shadow: 0 4px 16px rgba(109, 92, 255, 0.08);
}

.article-reason-card.is-open {
  border-color: var(--purple);
  box-shadow: 0 6px 24px rgba(109, 92, 255, 0.12);
}

.article-reason-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.article-reason-card__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.article-reason-card__chev {
  display: flex;
  color: var(--purple);
  transition: transform 0.2s;
}

.article-reason-card.is-open .article-reason-card__chev {
  transform: rotate(90deg);
}

.article-reason-card__body {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--border);
}

.article-reason-card__body[hidden] {
  display: none;
}

.article-reason-card__body p {
  margin: 1rem 0 0;
}

/* Checklists */
.article-checklist {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.article-checklist li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 2rem;
}

.article-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 4px;
  background: var(--purple-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
}

.article-section__body ul:not(.article-checklist),
.article-section__body ol:not(.article-checklist) {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

/* —— Sidebar —— */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: visible;
}

@media (min-width: 1024px) {
  .article-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    align-self: start;
  }
}

.article-sidebar__quote {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 14px;
  background: var(--purple-wash);
  border: 1px solid var(--purple-pale);
  overflow: visible;
}

.article-sidebar__quote-deco {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  color: var(--purple);
  opacity: 0.35;
  pointer-events: none;
}

.article-sidebar__quote p {
  margin: 0;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.article-sidebar__tips {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}

.article-sidebar__tips h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.article-sidebar__tips ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-sidebar__tips li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.article-sidebar__tips li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--purple);
}

.article-sidebar__sticky-cta {
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--navy-mid), #1e1545);
  color: var(--white);
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}

.article-sidebar__sticky-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.article-sidebar__sticky-cta p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.article-sidebar__cta-btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  background: var(--purple-deep);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
}

/* —— CTA band —— */
.article-cta-band {
  background: linear-gradient(135deg, #ede9fe 0%, #f7f8fc 50%, #e0e7ff 100%);
  border-top: 1px solid var(--border);
}

.article-cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.article-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.article-cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 40rem;
  color: var(--ink-muted);
}

.article-cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--purple-deep), #7c3aed);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(109, 92, 255, 0.35);
}

/* —— Related + FAQ —— */
.article-related-block,
.article-faq-block {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.article-related-block__inner,
.article-faq-block__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem);
}

.article-related-block h2,
.article-faq-block h2 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.article-related-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-related-block li {
  margin-bottom: 0.65rem;
}

.article-related-block a {
  font-weight: 600;
  font-size: 1.02rem;
}

.article-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.article-faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.article-faq-item summary::-webkit-details-marker {
  display: none;
}

.article-faq-item p {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
}

/* —— Comments (full-width row on desktop; after article on mobile) —— */
.article-comments-block {
  min-width: 0;
  padding: 1.75rem clamp(1.1rem, 3vw, 1.5rem);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.article-comments-block__inner {
  max-width: 52rem;
}

.article-comments-block__title {
  margin: 0 0 0.5rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.5rem);
}

.article-comments-block__lede {
  margin: 0 0 1.25rem;
  color: var(--ink-muted);
  max-width: 42rem;
  line-height: 1.55;
}

.article-comments__status {
  min-height: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.article-comments__status--error {
  color: #b42318;
}

.article-comments__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-comments__empty {
  margin: 0;
  color: var(--ink-muted);
  font-style: italic;
}

.article-comments__item {
  padding: 1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.article-comments__item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.article-comments__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.article-comments__time {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.article-comments__delete {
  margin-left: auto;
  padding: 0;
  border: none;
  background: none;
  color: var(--ink-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.article-comments__delete:hover {
  color: var(--ink);
}

.article-comments__body {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.article-comments__signin {
  margin: 0 0 1rem;
}

.article-comments__signin a {
  font-weight: 600;
}

.article-comments__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 40rem;
}

.article-comments__label {
  font-weight: 600;
  font-size: 0.92rem;
}

.article-comments__input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  line-height: 1.5;
  border: 1px solid var(--border);
  border-radius: 10px;
  resize: vertical;
  min-height: 6rem;
}

.article-comments__input:focus {
  outline: 2px solid var(--purple-light);
  outline-offset: 1px;
  border-color: var(--purple);
}

.article-comments__submit {
  align-self: flex-start;
  padding: 0.65rem 1.25rem;
  font: inherit;
  font-weight: 600;
  color: var(--white);
  background: var(--purple-deep);
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.article-comments__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.article-comments__submit:hover:not(:disabled) {
  background: #5b4de6;
}

/* —— Footer —— */
.article-site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.article-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.article-site-footer__links {
  display: flex;
  gap: 1.25rem;
}

.article-site-footer__links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.article-site-footer__links a:hover {
  color: var(--white);
}

.article-site-footer__copy {
  margin: 0;
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .article-site-footer__copy {
    width: auto;
    margin-left: auto;
  }
}

/* —— Articles index —— */
.article-page--index {
  background: var(--white);
}

.article-page--index .article-index-hero {
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  background: var(--white);
}

.article-page--index .article-index-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.article-page--index .article-index-hero p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--ink-muted);
}

.article-index-grid {
  list-style: none;
  margin: 0 auto 3rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max);
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .article-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-index-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.article-index-card:hover {
  border-color: var(--purple-pale);
  box-shadow: 0 8px 28px rgba(109, 92, 255, 0.1);
}

.article-index-card a {
  text-decoration: none;
  color: inherit;
}

.article-index-card__date {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

.article-index-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.article-index-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
