/* ==========================================================================
   55 · agency — Blog stylesheet (2026)
   --------------------------------------------------------------------------
   Extension of assets/css/agency-2026.css. Loaded only by /blog/ pages.
   Everything is driven by the tokens declared in the base stylesheet, so the
   light/dark themes are inherited for free; only the few rules that need more
   definition on white are duplicated at the bottom.
   ==========================================================================

   Espace de noms partagé — .faq-list, .faq-item et .table-wrap existent aussi
   dans agency-2026.css (pages racine). Les versions du blog gagnent parce que
   cette feuille est chargée après, à spécificité égale. Si l'ordre de
   chargement change, ou si une règle plus spécifique apparaît côté racine, ce
   sont ces trois composants qui casseront en premier.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Blog index — filters
   -------------------------------------------------------------------------- */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.blog-filters button {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.blog-filters button:hover {
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.blog-filters button.is-active {
  color: var(--on-accent);
  border-color: transparent;
  background: var(--grad-brand);
  box-shadow: 0 10px 30px -14px rgba(124, 92, 255, .8);
}

/* --------------------------------------------------------------------------
   2. Post cards
   -------------------------------------------------------------------------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
}
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  /* Aucune respiration sur la carte : elle est portée par .post-body, pour que
     la vignette aille à fleur de bord. Déclaré explicitement plutôt que laissé
     à la valeur par défaut, car ces deux propriétés ont déjà été posées par
     erreur depuis agency-2026.css. */
  padding: 0;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), box-shadow .5s var(--ease-out);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-2);
}
.post-card.is-hidden { display: none; }

.post-card .post-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--tile-bg);
  border-bottom: 1px solid var(--border);
}
/* Le lien qui enveloppe la vignette est inline par defaut : l'image n'y
   remplissait pas la hauteur et l'interligne ajoutait un liseré sous elle. */
.post-thumb > a { display: block; width: 100%; height: 100%; }
.post-thumb > a > img { display: block; }
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.post-card:hover .post-thumb img { transform: scale(1.05); }

.post-card .post-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(16px, 1.5vw, 20px);
  flex: 1;
}
.post-card h3 {
  font-size: 1.22rem;
  line-height: 1.24;
  letter-spacing: -.02em;
}
.post-card h3 a { transition: color .3s var(--ease); }
.post-card:hover h3 a { color: var(--accent-3); }
.post-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.post-card .post-foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12.5px;
  letter-spacing: .04em;
}
.post-card .post-foot .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }

/* Category chip -------------------------------------------------------- */
.post-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--grad-brand-soft);
  color: var(--text);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.post-cat.is-ai {
  background: linear-gradient(120deg, rgba(45, 220, 255, .14), rgba(124, 92, 255, .14));
  border-color: rgba(45, 220, 255, .32);
  color: var(--ai-ink);
}

/* Full-width lead article ----------------------------------------------- */
.post-featured {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(24px, 3vw, 36px);
  transition: transform .5s var(--ease-out), border-color .4s var(--ease), box-shadow .5s var(--ease-out);
}
.post-featured:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-2);
}
@media (max-width: 900px) { .post-featured { grid-template-columns: 1fr; } }
.post-featured .post-thumb {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--tile-bg);
}
.post-featured .post-thumb > a { display: block; width: 100%; height: 100%; }
.post-featured .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.post-featured:hover .post-thumb img { transform: scale(1.04); }
.post-featured .post-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 2.6vw, 40px);
  justify-content: center;
}
.post-featured h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.1; letter-spacing: -.03em; }
.post-featured p { color: var(--text-soft); max-width: 52ch; }
.post-featured .post-foot { border: 0; padding-top: 4px; }

.featured-flag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. Article layout
   -------------------------------------------------------------------------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 5vw, 76px);
  align-items: start;
}
@media (max-width: 1000px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static !important; order: -1; }
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}
.aside-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
}
.aside-card h4 {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Table of contents ------------------------------------------------------ */
.toc { display: grid; gap: 2px; }
.toc a {
  display: block;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--border);
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.4;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.toc a:hover { color: var(--text); border-left-color: var(--border-hover); }
.toc a.is-current {
  color: var(--text);
  font-weight: 600;
  border-left-color: var(--accent-3);
}

/* Share ------------------------------------------------------------------ */
.share-row { display: flex; gap: 10px; flex-wrap: wrap; }
.share-row a, .share-row button {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.share-row a:hover, .share-row button:hover {
  color: var(--text);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.share-row svg { width: 16px; height: 16px; }
.share-row .copy-ok { color: var(--ok); border-color: var(--ok); }

/* Sidebar CTA ------------------------------------------------------------ */
.aside-cta {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  background: var(--grad-brand-soft);
}
.aside-cta h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 10px;
}
.aside-cta p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 18px; }
.aside-cta .btn { width: 100%; padding: 14px 20px; font-size: 15px; }

/* --------------------------------------------------------------------------
   4. Article meta + cover
   -------------------------------------------------------------------------- */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: var(--text-muted);
  font-size: 14px;
}
.article-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }
.article-meta .byline { display: inline-flex; align-items: center; gap: 10px; color: var(--text-soft); }
.article-meta .byline .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: var(--on-accent);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  font-family: var(--font-display);
}

.article-cover {
  margin: 0 0 clamp(36px, 5vw, 64px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--tile-bg);
  box-shadow: var(--shadow-2);
}
.article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-cover figcaption {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   5. Prose
   -------------------------------------------------------------------------- */
.prose { max-width: 72ch; font-size: 17.5px; line-height: 1.75; color: var(--text-soft); }
.prose > * + * { margin-top: 26px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.16;
  letter-spacing: -.03em;
  color: var(--text);
  margin-top: clamp(48px, 6vw, 76px);
  scroll-margin-top: 110px;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.35rem);
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: 40px;
  scroll-margin-top: 110px;
}
.prose p { margin-top: 22px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose em { font-style: italic; }
.prose a:not(.btn) {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent-3);
  text-decoration-thickness: 1.5px;
  transition: color .3s var(--ease);
}
.prose a:not(.btn):hover { color: var(--accent-3); }

.prose ul, .prose ol { display: grid; gap: 12px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 6px; top: .68em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.prose ol { counter-reset: prose-ol; }
.prose ol li { position: relative; padding-left: 38px; counter-increment: prose-ol; }
.prose ol li::before {
  content: counter(prose-ol);
  position: absolute;
  left: 0; top: .1em;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  display: grid; place-items: center;
}
.prose li > ul, .prose li > ol { margin-top: 12px; }

.prose blockquote {
  margin: 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid transparent;
  border-image: var(--grad-brand) 1;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -.02em;
  color: var(--text);
}
.prose blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-style: normal;
  letter-spacing: .04em;
  color: var(--text-muted);
}

.prose figure { margin: 0; }
.prose figure img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--tile-bg);
}
.prose figure figcaption {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  font-size: .88em;
  padding: 3px 7px;
  border-radius: var(--radius-xs);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--text);
}
.prose pre {
  margin: 0;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--mock-frame-bg);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}
.prose pre code { padding: 0; border: 0; background: none; font-size: inherit; }

.prose hr { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); margin: clamp(40px, 5vw, 64px) 0; }

/* Tables ----------------------------------------------------------------- */
.prose .table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-md); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 520px; }
.prose thead th {
  text-align: left;
  padding: 16px 20px;
  background: var(--surface-strong);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.prose tbody td { padding: 15px 20px; border-top: 1px solid var(--border); vertical-align: top; }
.prose tbody tr:hover td { background: var(--surface); }
.prose tbody td:first-child { color: var(--text); font-weight: 500; }

/* Callouts --------------------------------------------------------------- */
.callout {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
}
.callout .callout-icon {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.callout .callout-body { flex: 1; }
.callout .callout-body > * + * { margin-top: 10px; }
.callout strong { color: var(--text); }
.callout.is-ai { border-color: rgba(45, 220, 255, .3); background: linear-gradient(120deg, rgba(45, 220, 255, .07), rgba(124, 92, 255, .07)); }
.callout.is-ai .callout-icon { background: var(--grad-ai); color: var(--on-ai); }

/* Key takeaways ---------------------------------------------------------- */
.takeaways {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--grad-brand-soft);
}
.takeaways h2 {
  margin-top: 0 !important;
  font-size: 1.05rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 600;
  letter-spacing: .16em !important;
  text-transform: uppercase;
  color: var(--text-muted) !important;
}
.takeaways ul { margin-top: 20px; gap: 14px; }
.takeaways ul li { padding-left: 32px; color: var(--text); }
.takeaways ul li::before {
  content: "";
  top: .42em;
  left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.6 4.6L19 7.6'/%3E%3C/svg%3E") center / 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.6 4.6L19 7.6'/%3E%3C/svg%3E") center / 100% no-repeat;
}

/* Inline stat row -------------------------------------------------------- */
.prose .fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}
@media (max-width: 640px) { .prose .fact-row { grid-template-columns: 1fr; } }
.prose .fact-row > div { padding: 24px; border-right: 1px solid var(--border); }
.prose .fact-row > div:last-child { border-right: 0; }
@media (max-width: 640px) {
  .prose .fact-row > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .prose .fact-row > div:last-child { border-bottom: 0; }
}
.prose .fact-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prose .fact-row span { display: block; margin-top: 8px; font-size: 14px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   6. FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: grid; gap: 12px; max-width: 72ch; }
.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.3;
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-3); }
.faq-item summary::after {
  content: "";
  flex: 0 0 20px;
  width: 20px; height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 100% no-repeat;
  transition: transform .4s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 26px 24px; color: var(--text-soft); line-height: 1.7; }
.faq-item .faq-answer > * + * { margin-top: 14px; }

/* --------------------------------------------------------------------------
   7. Author box + related
   -------------------------------------------------------------------------- */
.author-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-top: clamp(48px, 6vw, 72px);
  max-width: 72ch;
}
@media (max-width: 560px) { .author-box { flex-direction: column; gap: 16px; } }
.author-box .author-avatar {
  flex: 0 0 62px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: var(--on-accent);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.author-box h4 { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -.02em; color: var(--text); }
.author-box .author-role { display: block; margin-top: 4px; color: var(--text-muted); font-size: 13.5px; letter-spacing: .04em; }
.author-box p { margin-top: 12px; color: var(--text-soft); font-size: 15.5px; line-height: 1.65; }

/* Prev / next ------------------------------------------------------------ */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 60px);
  max-width: 72ch;
}
@media (max-width: 640px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav a {
  display: block;
  padding: 22px 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  transition: border-color .3s var(--ease), transform .4s var(--ease-out);
}
.post-nav a:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.post-nav small {
  display: block;
  color: var(--text-muted);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-nav strong { color: var(--text); font-family: var(--font-display); font-size: 1.02rem; line-height: 1.3; letter-spacing: -.02em; font-weight: 700; }
.post-nav .is-next { text-align: right; }

/* Reading progress bar ---------------------------------------------------- */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-brand);
  z-index: 999;
  transition: width .12s linear;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   8. Light-theme touch-ups
   -------------------------------------------------------------------------- */
:root[data-theme="light"] .post-card .post-thumb,
:root[data-theme="light"] .article-cover { background: var(--bg-soft); }
:root[data-theme="light"] .blog-filters button.is-active { box-shadow: 0 10px 30px -16px rgba(95, 52, 240, .7); }
:root[data-theme="light"] .callout.is-ai { border-color: rgba(10, 149, 189, .3); }
:root[data-theme="light"] .prose pre { background: var(--bg-soft); }
:root[data-theme="light"] .post-cat.is-ai { border-color: rgba(10, 149, 189, .35); }

/* Motion preferences ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .post-card, .post-featured, .post-nav a, .post-card .post-thumb img, .post-featured .post-thumb img { transition: none !important; }
  .post-card:hover, .post-featured:hover, .post-nav a:hover { transform: none; }
  .read-progress { transition: none; }
}
