/* ============================================================
   ASKNPIC — blog.css
   Feuille de style dédiée au blog.
   Chargée APRÈS style.css sur toutes les pages /blog/.
   Dépend des tokens CSS définis dans style.css (:root, [data-theme]).
   ============================================================ */


/* ── PAGE BLOG — liste des articles ────────────────────────── */

.blog-hero {
  padding: calc(var(--nav-h) + 72px) 0 64px;
  border-bottom: 1px solid var(--divider);
}

.blog-hero .section-label {
  margin-bottom: 12px;
}

.blog-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-hero-sub {
  font-size: 1.05rem;
  color: var(--text-sec);
  max-width: 480px;
  line-height: 1.7;
}

/* ── Grille d'articles ──────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 64px 0;
}

/* Article vedette : pleine largeur */
.blog-card--featured {
  grid-column: 1 / -1;
}

.blog-card--featured .blog-card-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.blog-card--featured .blog-card-cover {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) 0 0 var(--radius);
}

.blog-card--featured .blog-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card--featured .blog-card-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

/* Card standard */
.blog-card-inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.blog-card-inner:hover .blog-card-cover img {
  transform: scale(1.04);
}

/* Placeholder cover (tant que pas d'image) */
.blog-card-cover-placeholder {
  width: 100%;
  height: 100%;
  background: var(--input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-cover-placeholder span {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--magenta);
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.blog-card-excerpt {
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}

.blog-card-meta {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--magenta);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.blog-card-link:hover {
  gap: 8px;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ── PAGE ARTICLE ───────────────────────────────────────────── */

.article-wrap {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 96px;
}

/* Layout pleine largeur — sidebar supprimée, TOC dans le header */
.article-layout {
  display: block;
}

/* ── Header article ─────────────────────────────────────────── */

.article-header {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 40px;
}

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

.article-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 14px;
}

.article-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .85rem;
  color: var(--text-muted);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta-item svg {
  width: 14px;
  height: 14px;
  opacity: .7;
}

/* ── Image de couverture ────────────────────────────────────── */

.article-cover {
  width: 100%;
  aspect-ratio: 15 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--input-bg);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder */
.article-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--input-bg);
}

.article-cover-placeholder span {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ── Prose ──────────────────────────────────────────────────── */

.article-prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-sec);
}

.article-prose .brand {
  font-weight: 600;
  color: var(--magenta);
}

.article-prose>p:first-child {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.article-prose p {
  margin-bottom: 1.4rem;
}

.article-prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin: 3rem 0 1rem;
  line-height: 1.3;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

.article-prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 .75rem;
  line-height: 1.35;
}

.article-prose ul,
.article-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}

.article-prose ul {
  list-style: disc;
}

.article-prose ol {
  list-style: decimal;
}

.article-prose li {
  margin-bottom: .5rem;
  line-height: 1.7;
}

.article-prose strong {
  font-weight: 600;
  color: var(--text-primary);
}

.article-prose em {
  font-style: italic;
}

.article-prose a {
  color: var(--magenta);
  text-decoration: underline;
  text-decoration-color: var(--magenta-light);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s;
}

.article-prose a:hover {
  text-decoration-color: var(--magenta);
}

.article-prose code {
  font-family: var(--font-mono);
  font-size: .88em;
  background: var(--input-bg);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--magenta);
}

/* ── Images dans la prose ───────────────────────────────────── */

.article-img {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 2rem 0;
  background: var(--input-bg);
}

.article-img img {
  width: 100%;
  height: auto;
  display: block;
}

.article-img-placeholder {
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-img-placeholder span {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

figcaption {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 8px;
  font-style: italic;
}

/* ── Callout ────────────────────────────────────────────────── */

.callout {
  background: var(--magenta-light);
  border-left: 3px solid var(--magenta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 2rem 0;
  font-size: .95rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.callout strong {
  color: var(--magenta);
}

/* ── FAQ dans l'article ─────────────────────────────────────── */

.article-faq {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--divider);
}

.article-faq-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 8px;
}

.article-faq-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-accordion details {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-accordion details[open] {
  border-color: rgba(184, 53, 139, .35);
}

.faq-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--text-primary);
  transition: color .2s;
  user-select: none;
}

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

.faq-accordion summary::after {
  content: '';
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--magenta);
  border-bottom: 2px solid var(--magenta);
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.faq-accordion details[open] summary {
  color: var(--magenta);
}

.faq-accordion details[open] summary::after {
  transform: rotate(-135deg);
}

.faq-accordion-body {
  padding: 0 22px 18px;
  font-size: .92rem;
  color: var(--text-sec);
  line-height: 1.7;
}

.faq-accordion-body a {
  color: var(--magenta);
}

/* ── CTA fin d'article ──────────────────────────────────────── */

.article-cta {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 56px;
  text-align: center;
}

.article-cta-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.article-cta-sub {
  font-size: .95rem;
  color: var(--text-sec);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.article-cta-btn:hover {
  background: var(--magenta-hover);
  transform: translateY(-1px);
}

/* ── Table des matières — dans le header, collapsible ────────── */

.article-toc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  align-self: start;
}

.article-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  transition: color .2s;
}

.article-toc-toggle:hover {
  color: var(--text-primary);
}

.article-toc-toggle-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--magenta);
  transition: transform .25s ease;
}

.article-toc-toggle[aria-expanded="false"] .article-toc-toggle-icon {
  transform: rotate(-90deg);
}

.article-toc-body {
  border-top: 1px solid var(--divider);
  max-height: 240px;
  overflow-y: auto;
  transition: max-height .3s ease, opacity .25s ease;
  opacity: 1;
}

.article-toc-body[hidden] {
  display: none;
}

.article-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 8px 0;
}

.article-toc-item a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 7px 16px;
  font-size: .82rem;
  color: var(--text-sec);
  text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.4;
}

.article-toc-item a:hover {
  background: var(--input-bg);
  color: var(--text-primary);
}

.article-toc-item.active a {
  color: var(--magenta);
  background: var(--magenta-light);
  font-weight: 600;
}

.article-toc-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--magenta);
  flex-shrink: 0;
  min-width: 18px;
}

/* ── TOC mobile — sous les méta, avant la ligne de séparation ── */

.article-toc-mobile {
  display: none;
  margin-top: 16px;
}

.article-toc-mobile-inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.article-toc-mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.article-toc-mobile-toggle-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--magenta);
  transition: transform .25s ease;
}

.article-toc-mobile-toggle[aria-expanded="true"] .article-toc-mobile-toggle-icon {
  transform: rotate(180deg);
}

/* Items visibles par défaut (2) */
.article-toc-mobile-visible {
  border-top: 1px solid var(--divider);
}

/* Items cachés, révélés au clic */
.article-toc-mobile-hidden {
  display: none;
}

.article-toc-mobile-hidden.expanded {
  display: block;
}

/* ── Fil d'Ariane ───────────────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.breadcrumb-sep {
  opacity: .4;
}

.breadcrumb-current {
  color: var(--text-sec);
}

/* ── Navigation entre articles ──────────────────────────────── */

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--divider);
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color .2s, transform .2s;
}

.article-nav-link:hover {
  border-color: var(--magenta);
  transform: translateY(-2px);
}

.article-nav-link--next {
  text-align: right;
}

.article-nav-dir {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--magenta);
}

.article-nav-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ── Références liens externes ─────────────────────────────────────────── */

.article-references {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(128, 128, 128, 0.2);
  font-size: 0.85rem;
  opacity: 0.7;
}

.article-references h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b8358b;
  margin-bottom: 0.75rem;
}

.article-references ol {
  padding-left: 1.25rem;
}

.article-references li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

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

.ref-back {
  margin-left: 0.4rem;
  opacity: 0.5;
  text-decoration: none;
}

.ref-back:hover {
  opacity: 1;
}

/* ── Tableaux articles ── */
.article-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  line-height: 1.5;
}

.article-table thead tr {
  border-bottom: 2px solid var(--magenta);
  background: rgba(184, 53, 139, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  white-space: nowrap;
}

.article-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}

.article-table tbody tr:nth-child(odd) td {
  background: var(--input-bg);
}

.article-table tbody tr:last-child td {
  border-bottom: none;
}

/* Ligne mise en valeur (Ask N Pic) */
.article-table tr.article-table--highlighted td {
  border-top: 2px solid rgba(184, 53, 139, 0.4);
  border-bottom: 2px solid rgba(184, 53, 139, 0.4);
  background: rgba(184, 53, 139, 0.06);
  font-weight: 500;
}

.article-table tr.article-table--highlighted td:first-child {
  font-weight: 700;
  color: #b8358b;
  box-shadow: inset 3px 0 0 #b8358b;
}

/* Note de bas de tableau */
.article-table-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Workflow timeline ── */
.workflow-timeline {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 0;
}

.workflow-tl-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.workflow-tl-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: rgba(184, 53, 139, 0.25);
}

.workflow-tl-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #b8358b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.workflow-tl-body {
  padding: 0.5rem 0 1.75rem;
}

.workflow-tl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.workflow-tl-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}


/* ── Encart auteure ─────────────────────────────────────────── */

.author-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 48px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--divider);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.author-label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--magenta);
  margin-bottom: 8px;
  display: block;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.author-role {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.author-bio {
  font-size: .9rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 18px;
}

.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--magenta);
  text-decoration: none;
  border: 1px solid rgba(184, 53, 139, .3);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  transition: background .15s;
}

.author-link:hover {
  background: var(--magenta-light);
}

.author-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Scrollbar TOC ── */
.article-toc-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 53, 139, 0.4) transparent;
}

.article-toc-body::-webkit-scrollbar {
  width: 3px;
}

.article-toc-body::-webkit-scrollbar-track {
  background: transparent;
}

.article-toc-body::-webkit-scrollbar-thumb {
  background: rgba(184, 53, 139, 0.4);
  border-radius: 2px;
}

.article-toc-body::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 53, 139, 0.7);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .article-header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* TOC desktop masqué — TOC mobile prend le relais */
  .article-toc {
    display: none;
  }

  .article-toc-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }

  .blog-card--featured {
    grid-column: 1;
  }

  .blog-card--featured .blog-card-inner {
    grid-template-columns: 1fr;
  }

  .blog-card--featured .blog-card-cover {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .blog-card--featured .blog-card-body {
    padding: 24px;
  }

  .article-cta {
    padding: 28px 20px;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-link--next {
    text-align: left;
  }

  .article-faq-title {
    font-size: 1.3rem;
  }

  .author-box {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .author-avatar {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: calc(var(--nav-h) + 40px) 0 40px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .article-title {
    font-size: 1.6rem;
  }

  .article-meta {
    gap: 12px;
  }
}