/* ═══════════════════════════════════════════════════════════
   articles.css — Lightweight stylesheet for lynk Articole
   Tokens mirror main app (search/static/style.css).
   Scope: article list page, single article page, shared
          header, footer. No app-shell or sidebar styles.
   ═══════════════════════════════════════════════════════════ */

/* ── Design tokens (identical to main app) ──────────────── */
:root {
  --bg:          #f6f2eb;
  --card:        #ffffff;
  --text:        #2a2a2a;
  --muted:       #6f655d;
  --text-soft:   #5f564f;
  --border:      #e8e1d8;
  --accent:      #b89a6a;
  --accent-h:    #a7895c;
  --accent-soft: #f3ebe1;
  --accent-text: #7a5a2c;
  --radius-sm:   10px;
  --radius-md:   14px;
  --radius-lg:   18px;
  --shadow-sm:   0 8px 24px rgba(42, 42, 42, .06);
  --shadow-md:   0 14px 34px rgba(42, 42, 42, .07);
  --fs-xs:       13px;
  --fs-sm:       14px;
  --fs-base:     16px;
  --fs-md:       17px;
  --fs-lg:       20px;
  --fs-xl:       clamp(28px, 3vw, 38px);
  --lh-body:     1.6;
  --prose-max:   720px;
  --page-max:    1080px;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: transparent;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--accent-text);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }
p   { margin-top: 0; }

/* ── Skip link (accessibility) ───────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: var(--fs-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* =========================
   PUBLIC NAV (same as app)
========================= */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-left: calc(-50vw + 50% - 20px);
  margin-right: calc(-50vw + 50% - 20px);
  margin-bottom: 32px;
  padding: 14px max(calc((100vw - 880px) / 2 + 20px), 20px);
  width: 100vw;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.pub-nav.is-scrolled {
  background: rgba(246, 242, 235, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pub-nav-drawer {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 0;
}

.pub-nav-logo {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
  color: #1f1b16;
  display: flex;
  align-items: baseline;
  gap: 5px;
  transition: opacity 0.2s;
}

.pub-nav-logo:hover {
  text-decoration: none;
  opacity: 0.75;
}

.pub-nav-logo span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-family: inherit;
  line-height: 1;
}

.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pub-nav-item {
  position: relative;
}

.pub-nav-link,
.pub-nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  font-size: 15px;
  font-weight: 600;
  color: #3d3228;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}

.pub-nav-link:hover,
.pub-nav-btn:hover {
  background: rgba(184, 154, 106, 0.12);
  color: #1f1b16;
  text-decoration: none;
}

.pub-nav-btn svg {
  transition: transform 0.18s;
}

.pub-nav-item--dd:hover .pub-nav-btn svg,
.pub-nav-item--dd:focus-within .pub-nav-btn svg {
  transform: rotate(180deg);
}

.pub-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 1px solid rgba(184, 154, 106, 0.25);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(42, 34, 22, 0.11), 0 1px 4px rgba(42, 34, 22, 0.06);
  list-style: none;
  margin: 0;
  padding: 14px 6px 6px;
  min-width: 188px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s 0.08s, transform 0.15s 0.08s;
  z-index: 200;
}

.pub-nav-item--dd:hover .pub-nav-dropdown,
.pub-nav-item--dd:focus-within .pub-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.12s, transform 0.12s;
}

.pub-nav-drop-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #3d3228;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.pub-nav-drop-link:hover {
  background: rgba(184, 154, 106, 0.1);
  color: #1f1b16;
  text-decoration: none;
}

.pub-nav-login {
  flex-shrink: 0;
  border: 1px solid rgba(184, 154, 106, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #3d3228;
  background: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, border-color 0.2s;
}

.pub-nav-login:hover {
  text-decoration: none;
  color: #1f1b16;
  border-color: rgba(184, 154, 106, 0.55);
}

.pub-nav-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #3d3228;
  background: none;
  border: 1px solid rgba(184, 154, 106, 0.3);
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.pub-nav-cta:hover {
  color: #1f1b16;
  border-color: rgba(184, 154, 106, 0.55);
  text-decoration: none;
}

.pub-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 16px;
}

.pub-nav-item--auth { display: none; }
.pub-nav-close { display: none; }
.pub-nav-hamburger { display: none; }
.pub-nav-overlay { display: none; }
.mnav { display: none; }

@media (max-width: 768px) {
  .pub-nav {
    position: sticky;
    top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    margin-bottom: 32px;
    padding: 0 20px 0 30px;
    height: 52px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
    justify-content: space-between;
    gap: 0;
  }

  .pub-nav-logo {
    margin-left: 0;
    order: 1;
  }

  .pub-nav.is-scrolled {
    background: rgba(255, 252, 247, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .pub-nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    order: 2;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .pub-ham-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #3d3228;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .pub-nav-hamburger[aria-expanded="true"] .pub-ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .pub-nav-hamburger[aria-expanded="true"] .pub-ham-bar:nth-child(2) {
    opacity: 0;
  }

  .pub-nav-hamburger[aria-expanded="true"] .pub-ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .pub-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 899;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .pub-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .pub-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    background: #faf7f2;
    z-index: 901;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateY(100%);
    transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: none;
  }

  .pub-nav-drawer.is-open {
    transform: translateY(0);
  }

  .pub-nav-links,
  .pub-nav-actions {
    display: none !important;
  }

  .mnav {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    min-height: 0;
    position: relative;
    overflow: hidden;
  }

  .mnav-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #faf7f2;
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .mnav-panel--main { transform: translateX(0); }
  .mnav-panel--main.is-pushed { transform: translateX(-28%); }
  .mnav-panel--sub { transform: translateX(100%); }
  .mnav-panel--sub.is-active { transform: translateX(0); }

  .mnav-panel-head {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 56px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
  }

  .mnav-panel-head--main {
    justify-content: flex-end;
  }

  .mnav-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    border-radius: 50%;
    color: #1d1d1f;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .mnav-close-btn:active {
    background: rgba(0, 0, 0, 0.14);
  }

  .mnav-back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #b89a6a;
    cursor: pointer;
    padding: 8px 0;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .mnav-back-btn:active {
    opacity: 0.55;
  }

  .mnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mnav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 22px;
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
    text-align: left;
    box-sizing: border-box;
  }

  .mnav-row:hover {
    background: none;
    color: #1d1d1f;
    text-decoration: none;
  }

  .mnav-row:active {
    background: rgba(0, 0, 0, 0.04);
  }

  .mnav-chevron {
    flex-shrink: 0;
    color: #1d1d1f;
    opacity: 0.28;
  }
}

/* ── Footer ─────────────────────────────────────────────── */
.art-footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
  padding: 40px 20px 32px;
  background: var(--bg);
}

.art-footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 40px;
}

.art-footer-brand { display: flex; align-items: baseline; gap: 8px; }

.art-footer-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.art-footer-logo:hover { text-decoration: none; color: var(--accent-text); }
.art-footer-tagline { font-size: var(--fs-xs); color: var(--muted); }

.art-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  flex: 1;
}
.art-footer-nav a { font-size: var(--fs-sm); color: var(--text-soft); }

.art-footer-copy {
  width: 100%;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── Articles list page ──────────────────────────────────── */
.articles-main { min-height: 60vh; }

.articles-container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.articles-hero {
  max-width: 600px;
  margin-bottom: 52px;
}

.articles-kicker {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 0 0 8px;
}

.articles-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
}

.articles-subtitle {
  font-size: var(--fs-md);
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 860px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .articles-grid    { grid-template-columns: 1fr; gap: 20px; }
  .articles-container { padding-top: 32px; }
}

.articles-empty {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
}

/* ── Article card ────────────────────────────────────────── */
.a-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease;
}
.a-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.a-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.a-card-link:hover { text-decoration: none; }

.a-card-fig {
  margin: 0;
  aspect-ratio: 1.91 / 1;
  overflow: hidden;
  background: var(--accent-soft);
  flex-shrink: 0;
}

.a-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.a-card:hover .a-card-img { transform: scale(1.03); }

.a-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #ede4d6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-card-placeholder::after {
  content: "lynk";
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  opacity: .35;
}

.a-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.a-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.a-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 20px;
}

.a-card-title {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.a-card-summary {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.a-card-meta {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--muted);
}
.a-card-dot { opacity: .4; }

/* ── Single article page ─────────────────────────────────── */
.article-main  { min-height: 70vh; }

.article-container {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.article-breadcrumb { margin-bottom: 28px; }
.article-breadcrumb a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-soft);
}
.article-breadcrumb a:hover { color: var(--accent-text); }

.article-hdr { margin-bottom: 28px; }

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 14px;
  font-size: var(--fs-xs);
  color: var(--muted);
}

.article-tag-pill {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 2px 10px;
  border-radius: 20px;
}
.article-sep { opacity: .4; }

.article-h1 {
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 14px;
}

.article-lead {
  font-size: var(--fs-lg);
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0 0 10px;
}

.article-author {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin: 0;
}

.article-hero-fig {
  margin: 0 0 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1.91 / 1;
  background: var(--accent-soft);
}
.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Prose (Markdown rendered body) ─────────────────────── */
.prose {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--text);
}

.prose h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 2em 0 .6em;
  padding-top: .5em;
  border-top: 1px solid var(--border);
}
.prose h3 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--text);
  margin: 1.6em 0 .5em;
}
.prose h4 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--text-soft);
  margin: 1.4em 0 .4em;
}

.prose p { margin: 0 0 1.2em; }

.prose a {
  color: var(--accent-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--accent-h); }

.prose ul,
.prose ol { padding-left: 1.6em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }

.prose blockquote {
  margin: 1.6em 0;
  padding: 14px 20px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-soft);
  font-style: italic;
}
.prose blockquote p:last-child { margin-bottom: 0; }

.prose code {
  font-family: 'SF Mono', 'Fira Mono', 'Consolas', monospace;
  font-size: .88em;
  background: #f0eae0;
  color: var(--accent-text);
  padding: 2px 6px;
  border-radius: 4px;
}

.prose pre {
  background: #2a2a2a;
  color: #e8e1d8;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 0 0 1.4em;
  font-size: .88em;
  line-height: 1.6;
}
.prose pre code {
  background: none;
  color: inherit;
  padding: 0;
  font-size: inherit;
  border-radius: 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.4em;
  font-size: var(--fs-sm);
}
.prose th {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  padding: 9px 14px;
  background: var(--accent-soft);
  border-bottom: 2px solid var(--border);
}
.prose td {
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.prose tr:last-child td { border-bottom: none; }

.prose img {
  border-radius: var(--radius-md);
  margin: .8em 0 1.4em;
  box-shadow: var(--shadow-sm);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

.prose strong { font-weight: 700; color: var(--text); }

/* ── Article footer (tags) ───────────────────────────────── */
.article-tags-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.article-tags-label {
  font-size: var(--fs-sm);
  color: var(--muted);
}
.article-tag-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
}
.article-tag-link:hover { background: #e5d9c7; text-decoration: none; }

.article-back { margin-top: 48px; }
.article-back-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-soft);
}
.article-back-link:hover { color: var(--accent-text); }

/* ── Share bar ── */
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-share-label {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-right: 4px;
}
.article-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.article-share-btn:hover { opacity: 0.82; text-decoration: none; }
.article-share-btn--linkedin { background: #0a66c2; color: #fff; }
.article-share-btn--facebook { background: #1877f2; color: #fff; }
.article-share-btn--x        { background: #000;    color: #fff; }
.article-share-btn--email    { background: var(--accent-soft); color: var(--accent-text); }
.article-share-btn--copy     { background: var(--accent-soft); color: var(--accent-text); }
.article-share-btn--copy.copied { background: #d4edda; color: #276739; }
