/* =========================================================
   blog.css — Das Fabularium
   Le carnet de l'atelier : liste d'articles + article.
   Style "mur d'atelier" : polaroids, masking tape, scribbles,
   tissus, bobines en décor.
========================================================= */

/* =========================================================
   HERO du blog
========================================================= */

.blog-hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  overflow: hidden;
  text-align: center;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.blog-hero h1 {
  margin: 8px 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
}

.blog-hero h1 em {
  font-style: italic;
  color: var(--rust);
}

.blog-hero .hero-lead {
  max-width: 56ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.6;
}

.blog-hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.blog-hero-decor .deco-star {
  position: absolute;
  color: var(--rust);
  opacity: 0.55;
}

.blog-hero-decor .deco-star-1 {
  top: 22%;
  left: 8%;
  width: 24px;
  height: 24px;
  transform: rotate(-12deg);
}

.blog-hero-decor .deco-star-2 {
  top: 36%;
  right: 10%;
  width: 16px;
  height: 16px;
  color: var(--blue-aquarelle);
  opacity: 0.6;
  transform: rotate(16deg);
}

.blog-hero-decor .deco-spool {
  position: absolute;
  top: 12%;
  right: 4%;
  width: clamp(60px, 6vw, 90px);
  transform: rotate(-12deg);
  opacity: 0.85;
}
.blog-hero-decor .deco-spool img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 5px rgba(42, 36, 31, 0.18));
}

.blog-hero-decor .deco-fabric {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: clamp(70px, 8vw, 120px);
  transform: rotate(8deg);
  opacity: 0.7;
}
.blog-hero-decor .deco-fabric img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 3px 5px rgba(42, 36, 31, 0.14));
}

@media (max-width: 720px) {
  .blog-hero-decor .deco-spool,
  .blog-hero-decor .deco-fabric { display: none; }
}

/* =========================================================
   FILTRES par catégorie (pills horizontales)
========================================================= */

.blog-filters {
  padding: clamp(20px, 2.5vw, 30px) 0 clamp(30px, 3.5vw, 45px);
}

.blog-filters .container {
  max-width: 980px;
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.filter-pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 250, 238, 0.7);
  border: 1px solid rgba(36, 27, 21, 0.18);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  transition: all 200ms cubic-bezier(.2,.7,.3,1);
}

.filter-pill:hover {
  background: rgba(255, 244, 216, 0.95);
  border-color: var(--rust);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: var(--rust);
  color: var(--paper-light);
  border-color: var(--rust);
  box-shadow: 0 3px 0 rgba(126, 47, 31, 0.28);
}

/* =========================================================
   MUR D'ARTICLES — "atelier"
========================================================= */

.blog-wall {
  position: relative;
  padding: 0 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}

.wall-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.wall-star-a {
  top: 8%;
  left: 5%;
  width: 22px;
  height: 22px;
  color: var(--rust);
  opacity: 0.45;
  transform: rotate(-12deg);
}

.wall-star-b {
  bottom: 18%;
  right: 4%;
  width: 18px;
  height: 18px;
  color: var(--blue-aquarelle);
  opacity: 0.5;
  transform: rotate(14deg);
}

.wall-decor svg { width: 100%; height: 100%; }

.blog-wall .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  /* marge droite plus généreuse pour aérer la grille */
  padding-right: clamp(28px, 6vw, 80px);
  padding-left: clamp(20px, 5vw, 56px);
}

/* ===== Article à la une ===== */
.article-card--featured {
  position: relative;
  margin: 0 auto clamp(40px, 5vw, 70px);
  max-width: 900px;
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(247, 235, 211, 0.94));
  border: 1px solid rgba(36, 27, 21, 0.14);
  border-radius: 5px 9px 6px 8px;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3vw, 40px) clamp(28px, 3vw, 40px);
  box-shadow:
    4px 6px 0 rgba(42, 36, 31, 0.07),
    0 18px 40px rgba(42, 36, 31, 0.10);
  transform: rotate(-0.6deg);
  transform-origin: 30% 50%;
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
}

.article-card--featured:hover {
  transform: rotate(0) translateY(-3px);
}

.article-card--featured .article-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 2px 2px rgba(42, 36, 31, 0.4));
}
.article-card--featured .article-pin img { width: 100%; height: 100%; display: block; }

.article-card--featured .card-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 720px) {
  .article-card--featured .card-link {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.article-card--featured .article-cover {
  width: 100%;
  transform: rotate(-3deg);
  transition: transform 360ms cubic-bezier(.2,.7,.3,1);
}

.article-card--featured:hover .article-cover {
  transform: rotate(0);
}

.article-card--featured .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}

.article-card--featured .article-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
}

.article-card--featured .article-excerpt {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.article-card--featured .article-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  transition: gap 200ms ease;
}

.article-card--featured:hover .article-cta { gap: 14px; }

/* ===== Grille des autres articles — STYLE "POST-IT + PHOTO ID" =====
   Chaque carte est une note papier (post-it crème) sur laquelle une
   petite photo format identité est collée en haut. */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(28px, 3vw, 40px);
}

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

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

.article-card {
  position: relative;
  /* aspect post-it : papier crème, légère ombre portée
     (les variantes de couleur sont définies plus bas via nth-of-type) */
  background:
    linear-gradient(180deg, #fdf3c8 0%, #f4e6a8 100%);
  border: 1px solid rgba(36, 27, 21, 0.10);
  border-radius: 3px 6px 4px 5px;
  padding: 24px 22px 22px;
  box-shadow:
    1px 2px 0 rgba(42, 36, 31, 0.08),
    3px 8px 14px rgba(42, 36, 31, 0.10);
  transition: transform 320ms cubic-bezier(.2,.7,.3,1), box-shadow 320ms ease;
}

/* variantes de couleur — distribution pseudo-aléatoire (pas de
   stricte alternance, deux mêmes couleurs côte-à-côte OK) */

/* défaut = jaune chaud (utile si on dépasse 12 cartes) */
.article-card {
  background: linear-gradient(180deg, #fdf3c8 0%, #f4e6a8 100%);
}

/* bleu ciel doux */
.article-card:nth-of-type(2),
.article-card:nth-of-type(4),
.article-card:nth-of-type(9),
.article-card:nth-of-type(11) {
  background: linear-gradient(180deg, #d3e6f3 0%, #abc8de 100%);
}

/* rose corail */
.article-card:nth-of-type(3),
.article-card:nth-of-type(6),
.article-card:nth-of-type(7),
.article-card:nth-of-type(12) {
  background: linear-gradient(180deg, #f6d8cc 0%, #ecb9a6 100%);
}

/* (1, 5, 8, 10 restent en jaune par défaut) */

/* rotations — gardent la même logique mais sans suivre la couleur */
.article-card:nth-of-type(odd)  { transform: rotate(-1.2deg); }
.article-card:nth-of-type(even) { transform: rotate(0.8deg); }
.article-card:nth-of-type(3n)   { transform: rotate(-0.5deg); }

.article-card:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow:
    2px 4px 0 rgba(42, 36, 31, 0.10),
    5px 14px 24px rgba(42, 36, 31, 0.14);
}

.article-card .card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* photo "ID" : petit format, centrée en haut, bord papier épais */
.article-card .article-cover {
  /* override polaroid/taped : photo identité posée sur la note */
  width: 60%;
  max-width: 160px;
  aspect-ratio: 4 / 5;
  margin: 0 auto 16px;
  padding: 6px 6px 18px;
  background: #fff;
  border: 1px solid rgba(36, 27, 21, 0.12);
  box-shadow:
    0 1px 0 rgba(42, 36, 31, 0.06),
    0 6px 14px rgba(42, 36, 31, 0.12);
  position: relative;
  display: block;
  transform: rotate(-2deg);
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
}

/* petit bout de masking tape qui maintient la photo */
.article-card .article-cover::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 44px;
  height: 14px;
  background: url("../assets/tape-masking-paper.png") center / 100% 100% no-repeat;
  filter: var(--tape-filter);
  opacity: var(--tape-opacity);
  pointer-events: none;
  z-index: 3;
}

.article-card .article-cover .photo {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ddd;
}

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

/* la figcaption du polaroid est inutile ici */
.article-card .article-cover figcaption { display: none; }

.article-card:hover .article-cover {
  transform: rotate(0) scale(1.03);
}

.article-card .article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 8px;
  flex-wrap: wrap;
}

.article-card .article-title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.005em;
  text-align: center;
}

.article-card .article-excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
}

/* tag + date */
.article-tag {
  display: inline-block;
  padding: 3px 11px;
  background: rgba(169, 72, 43, 0.10);
  color: var(--rust);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.article-tag--inline {
  font-size: 0.66rem;
}

.article-date {
  font-family: "IM Fell English", Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ===== Pagination ===== */
.blog-pagination {
  margin-top: clamp(40px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.page-link {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(36, 27, 21, 0.18);
  border-radius: 6px;
  transition: all 200ms ease;
}

.page-link:hover {
  background: var(--paper-warm, #f1eadc);
  border-color: var(--rust);
  color: var(--rust);
}

.page-link.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.page-info {
  font-style: italic;
}

/* =========================================================
   Newsletter
========================================================= */

.blog-newsletter {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  text-align: center;
}

.blog-newsletter .container {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.blog-newsletter h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 14px;
  line-height: 1.1;
}

.blog-newsletter p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 50ch;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(36, 27, 21, 0.3);
  background: rgba(255, 250, 238, 0.85);
  border-radius: 6px;
  color: var(--ink);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--rust);
  background: rgba(255, 250, 238, 1);
}

.newsletter-form input::placeholder {
  font-family: "IM Fell English", Georgia, serif;
  font-style: italic;
  color: rgba(36, 27, 21, 0.4);
}

.newsletter-deco {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 26px;
  height: 26px;
  color: var(--rust);
  opacity: 0.45;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 1;
}
.newsletter-deco svg { width: 100%; height: 100%; }

/* =========================================================
   ARTICLE — page individuelle
========================================================= */

.article-page-body {
  position: relative;
  padding: clamp(40px, 5vw, 70px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
}

.article-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* décors latéraux discrets */
.article-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.article-decor-a {
  top: 12%;
  left: 4%;
  width: clamp(50px, 5vw, 75px);
  transform: rotate(14deg);
}
.article-decor-a img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 4px 6px rgba(42, 36, 31, 0.16));
}

.article-decor-b {
  top: 8%;
  right: 5%;
  width: 24px;
  height: 24px;
  color: var(--rust);
  opacity: 0.45;
  transform: rotate(-14deg);
}
.article-decor-b svg { width: 100%; height: 100%; }

.article-decor-c {
  bottom: 16%;
  right: 4%;
  width: clamp(70px, 8vw, 100px);
  transform: rotate(-8deg);
  opacity: 0.55;
}
.article-decor-c img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(2px 3px 5px rgba(42, 36, 31, 0.14));
}

@media (max-width: 980px) {
  .article-decor { display: none; }
}

/* Breadcrumb */
.article-crumbs {
  margin-bottom: 28px;
}

.crumb-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: gap 200ms ease, color 200ms ease;
}

.crumb-back svg {
  width: 16px;
  height: 16px;
}

.crumb-back:hover {
  gap: 12px;
  color: var(--rust);
}

/* En-tête */
.article-head {
  margin-bottom: clamp(28px, 3vw, 40px);
  text-align: center;
}

.article-eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  justify-content: center;
}

.dot-sep {
  color: var(--rust);
  opacity: 0.7;
}

.article-head h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 8px 0 18px;
}

.article-head h1 em {
  font-style: italic;
  color: var(--rust);
}

.article-lead {
  font-family: "IM Fell English", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0 auto;
}

/* Image de tête */
.article-hero-figure {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  position: relative;
}

.article-hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(42, 36, 31, 0.08),
    0 18px 40px rgba(42, 36, 31, 0.14);
}

.article-hero-photo .ph-photo,
.article-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-figure figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: "Caveat", "IM Fell English", cursive;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* Corps texte */
.article-body {
  font-family: "IM Fell English", Georgia, serif;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.75;
  color: var(--ink);
}

.article-body p {
  margin: 0 0 1.4em;
  text-wrap: pretty;
}

.article-body p:first-of-type::first-letter {
  /* lettrine légère sur le premier paragraphe */
  font-family: var(--font-title);
  font-size: 3.4em;
  line-height: 0.9;
  float: left;
  margin: 4px 10px 0 0;
  color: var(--rust);
}

.article-body h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin: 1.8em 0 0.6em;
  line-height: 1.15;
  letter-spacing: 0.005em;
}

.article-body h3 {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin: 1.5em 0 0.5em;
  line-height: 1.2;
}

.article-body em {
  font-style: italic;
  color: var(--ink);
}

.article-body strong {
  font-weight: 600;
  color: var(--ink);
}

/* Citation */
.article-quote {
  margin: clamp(28px, 3vw, 40px) 0;
  padding: clamp(22px, 2.5vw, 32px) clamp(24px, 3vw, 36px);
  background: rgba(216, 182, 95, 0.16);
  border-left: 3px solid var(--rust);
  border-radius: 0 6px 6px 0;
  position: relative;
}

.article-quote::before {
  /* gros guillemet décoratif */
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1;
  color: var(--rust);
  opacity: 0.5;
}

.article-quote p {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.35;
  color: var(--ink);
}

.article-quote cite {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Liste */
.article-list {
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 24px;
  margin: 0.7em 0;
  line-height: 1.65;
}

.article-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rust);
  font-weight: 600;
}

/* Signature */
.article-signature {
  margin: clamp(36px, 4vw, 56px) 0 clamp(20px, 2.5vw, 30px);
  text-align: center;
}

.article-signature .caveat {
  font-family: "Caveat", "IM Fell English", cursive;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--ink-soft);
  margin: 0;
}

/* Tags */
.article-tags {
  margin: 0 0 clamp(40px, 4vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px dashed rgba(42, 36, 31, 0.2);
}

.tags-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 4px;
}

.article-tags .article-tag {
  cursor: pointer;
  transition: all 200ms ease;
}

.article-tags .article-tag:hover {
  background: var(--rust);
  color: var(--paper-light);
}

/* Navigation prev/next */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(42, 36, 31, 0.12);
}

@media (max-width: 620px) {
  .article-nav { grid-template-columns: 1fr; }
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 250, 238, 0.6);
  border: 1px solid rgba(36, 27, 21, 0.12);
  border-radius: 5px 8px 6px 7px;
  text-decoration: none;
  color: inherit;
  transition: all 280ms cubic-bezier(.2, .7, .3, 1);
}

.article-nav-prev { transform: rotate(-0.4deg); }
.article-nav-next { transform: rotate(0.4deg); text-align: right; }

.article-nav-link:hover {
  transform: rotate(0) translateY(-2px);
  background: rgba(255, 244, 216, 0.92);
  border-color: rgba(169, 72, 43, 0.5);
  box-shadow: 3px 5px 0 rgba(42, 36, 31, 0.06);
}

.article-nav-link .dir {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}

.article-nav-link .title {
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
}

/* helper accessible */
.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;
}
