/* ==========================================================================
   Layer Add — le forum
   Communauté façon Reddit : sous-forums, discussions, fil imbriqué.

   La couleur CLASSE, elle ne décore pas : chaque sous-forum porte --teinte
   (posée en inline via var(--st01-x, …) etc.). Elle s'exprime SANS barre
   verticale : l'emblème du calque, un filet HORIZONTAL fin sous le titre, le
   badge de sous-forum, un fond à peine teinté. L'imbrication des réponses se lit
   par le décalage et un filet GRIS discret, jamais coloré.
   Repli : si les jetons --xx01-x n'existent pas encore dans base.css, la valeur
   hexadécimale de repli passée en inline prend le relais.
   ========================================================================== */

/* ------------------------------------------------------------- fil d'ariane */

.f-ariane {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-block: 18px 2px;
  font-size: 13px; font-weight: 600; color: var(--gris-1);
}
.f-ariane a { text-decoration: none; color: var(--gris-1); }
.f-ariane a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.f-ariane [aria-current="page"] { color: var(--encre); }
.f-ariane__sep { color: var(--gris-2); }

/* --------------------------------------------------------------- l'entête */

.f-hero { padding-top: clamp(24px, 3vw, 40px); border-bottom: 1px solid var(--gris-2); }
.f-hero__tete {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.f-hero__mots { max-width: 60ch; }
.f-hero__eti { color: var(--gris-1); display: block; margin-bottom: 12px; }
.f-hero__intro { margin-top: 14px; }

.f-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: clamp(20px, 2.4vw, 30px);
}

/* recherche du forum */
.f-recherche { position: relative; flex: 1 1 340px; min-width: 240px; }
.f-recherche__loupe {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--gris-1); fill: none; stroke-width: 2;
  pointer-events: none;
}
.f-recherche__champ {
  width: 100%; height: 48px; padding: 0 16px 0 42px;
  font: inherit; font-size: 15px; color: var(--encre);
  background: #fff; border: 1px solid var(--gris-2); border-radius: var(--rayon);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.f-recherche__champ::placeholder { color: var(--gris-1); }
.f-recherche__champ:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 77, 255, .16);
}
.f-nouvelle { flex: none; height: 48px; }

/* le chip de compte (rempli par forum.js) */
.f-compte { flex: none; display: flex; align-items: center; gap: 10px; }
.f-compte__chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 8px 7px 10px; border: 1px solid var(--gris-2);
  border-radius: 999px; background: #fff; font-size: 14px; font-weight: 600;
}
.f-compte__chip .f-avatar { width: 26px; height: 26px; font-size: 12px; }
.f-compte__sortir {
  border: 0; background: none; cursor: pointer;
  font-size: 12px; font-weight: 700; color: var(--gris-1);
  padding: 4px 8px; border-radius: 999px;
}
.f-compte__sortir:hover { color: var(--accent); background: #F2F1ED; }

/* --------------------------------------------------------------- avatars */

.f-avatar {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--av, var(--accent)); color: #fff;
  font-size: 13px; font-weight: 700; line-height: 1;
}
.f-avatar--grand { width: 52px; height: 52px; font-size: 22px; }

/* --------------------------------------------------- grille des sous-forums */

.f-cats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
.f-cat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px;
  background: #fff; border: 1px solid var(--gris-2); border-radius: var(--rayon);
  text-decoration: none; color: var(--encre);
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.f-cat:hover {
  border-color: var(--encre); transform: translateY(-2px);
  box-shadow: 0 16px 34px -24px rgba(14, 17, 22, .55);
}
/* l'emblème du calque : deux plans qui se croisent, le croisement à la couleur
   du sous-forum (les plans restent en teinte pâle). Classe, ne décore pas. */
.f-cat__embleme { flex: none; width: 42px; height: 34px; }
.f-embleme { display: block; width: 100%; height: 100%; }
.f-embleme .plan-a { fill: color-mix(in srgb, var(--teinte) 14%, #fff); }
.f-embleme .plan-b { fill: color-mix(in srgb, var(--teinte) 26%, #fff); }
.f-embleme .croisement { fill: var(--teinte); }
.f-cat__nom { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-top: 4px; }
/* filet horizontal fin sous le titre, à la couleur du sujet */
.f-cat__nom::after {
  content: ""; display: block; width: 32px; height: 2px; margin-top: 10px;
  background: var(--teinte); border-radius: 2px;
}
.f-cat__resume { color: #3A4049; }
.f-cat__stat { margin-top: auto; padding-top: 6px; color: var(--gris-1); font-weight: 600; }

/* ------------------------------------------------- liste des discussions */

.f-fil { display: flex; flex-direction: column; gap: 12px; }
.f-fil__vide { margin-top: 10px; }

.f-sujet {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--gris-2); border-radius: var(--rayon);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.f-sujet:hover { box-shadow: 0 14px 30px -24px rgba(14, 17, 22, .5); }
.f-sujet__corps { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.f-sujet__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--gris-1); }
.f-sujet__auteur { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #3A4049; }
.f-sujet__pt { color: var(--gris-2); }
.f-sujet__titre { font-size: 19px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.f-sujet__titre a { text-decoration: none; }
.f-sujet__titre a:hover { color: var(--accent); }
.f-sujet__extrait { color: #4A505A; font-size: 15px; line-height: 1.5; }
.f-sujet__pied { display: flex; gap: 14px; color: var(--gris-1); }
.f-sujet__rep { text-decoration: none; font-weight: 600; color: var(--gris-1); }
.f-sujet__rep:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* le tag épinglé */
.f-tag-epingle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--teinte);
}
.f-tag-epingle svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* --------------------------------------------------------------- le vote */

.f-votes {
  flex: none; display: flex; flex-direction: column; align-items: center; gap: 2px;
  width: 40px; user-select: none;
}
.f-vote {
  border: 0; background: none; cursor: pointer; padding: 3px;
  display: inline-flex; border-radius: 5px; color: var(--gris-1);
  transition: color var(--transition), background var(--transition);
}
.f-vote svg { width: 20px; height: 20px; fill: currentColor; }
.f-vote:hover { background: #F2F1ED; }
.f-vote--haut:hover, .f-vote--haut[data-actif="1"] { color: var(--teinte, var(--accent)); }
.f-vote--bas:hover, .f-vote--bas[data-actif="1"] { color: #3A6EA5; }
.f-votes__n { font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }

/* =========================================================== page discussion */

.f-thread { max-width: 820px; }
.f-thread__tete { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.f-thread__titre { font-size: clamp(26px, 3vw, 38px); }

.f-badge {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--teinte) 12%, #fff);
  color: var(--teinte); border: 1px solid color-mix(in srgb, var(--teinte) 40%, #fff);
  font-size: 12px; font-weight: 700; letter-spacing: .02em; text-decoration: none;
  white-space: nowrap;
}
.f-badge:hover { background: color-mix(in srgb, var(--teinte) 20%, #fff); }

/* un message (ouverture ou réponse) */
.f-post {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 18px 20px; background: #fff;
  border: 1px solid var(--gris-2); border-radius: var(--rayon);
}
/* le message d'ouverture : distingué par un fond à peine teinté (pas de barre) */
.f-op {
  background: color-mix(in srgb, var(--teinte) 6%, #fff);
  margin-bottom: 28px;
}
.f-post__corps { min-width: 0; }
.f-post__meta { display: flex; align-items: center; gap: 9px; color: var(--gris-1); margin-bottom: 10px; }
.f-post__auteur { color: var(--encre); font-size: 14px; }
.f-post__corps .corps { margin-bottom: 12px; color: #23272E; }
.f-post__corps .corps:last-of-type { margin-bottom: 0; }
.f-post__actions { display: flex; gap: 16px; margin-top: 14px; }
.f-lien-action {
  border: 0; background: none; cursor: pointer; padding: 0;
  font-size: 13px; font-weight: 700; color: var(--gris-1);
}
.f-lien-action:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.f-reponses-tete { margin: 8px 0 16px; }
.f-reponses-tete h2, .f-composer-tete h2 { font-size: 20px; }

/* le fil imbriqué */
.f-reponses { display: flex; flex-direction: column; gap: 14px; }
.f-reponse { display: flex; flex-direction: column; gap: 14px; }
/* hiérarchie du fil : un décalage + un filet GRIS très fin (façon fil classique) */
.f-reponse__enfants {
  margin-top: 14px; margin-left: 22px;
  padding-left: 20px;
  border-left: 2px solid var(--gris-2);
  display: flex; flex-direction: column; gap: 14px;
}
/* les réponses imbriquées : fond légèrement retiré pour la profondeur */
.f-reponse__enfants .f-post { background: #FBFBF9; }
.f-reponse__enfants .f-reponse__enfants .f-post { background: #F7F7F4; }

/* la zone de réponse (maquette) */
.f-composer {
  margin-top: 8px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--gris-2); border-radius: var(--rayon);
  border-top: 2px solid var(--teinte);
}
.f-composer__cible {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px;
  padding: 5px 12px; border-radius: 999px; background: #F2F1ED;
  font-weight: 700; color: #3A4049;
}
.f-composer__cible button {
  border: 0; background: none; cursor: pointer; color: var(--gris-1);
  font-weight: 700; font-size: 14px; line-height: 1;
}
.f-composer__champ {
  width: 100%; min-height: 108px; resize: vertical; padding: 14px 16px;
  font: inherit; font-size: 15px; color: var(--encre);
  background: #fff; border: 1px solid var(--gris-2); border-radius: var(--rayon);
}
.f-composer__champ:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(27, 77, 255, .16); }
.f-composer__pied {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 12px;
}
.f-composer__note { max-width: 46ch; }
.f-thread__retour { margin-top: 26px; }

/* =============================================================== sous-forum */

.f-cat-tete {
  border-bottom: 1px solid var(--gris-2);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--teinte) 8%, #fff) 0%, #fff 100%);
}
.f-cat-tete__eti { color: var(--teinte); display: block; margin-bottom: 12px; }
/* filet horizontal fin sous le titre du sous-forum, à sa couleur */
.f-cat-tete .titre::after {
  content: ""; display: block; width: 46px; height: 3px; margin-top: 16px;
  background: var(--teinte); border-radius: 2px;
}
.f-cat-tete__desc { margin-top: 14px; max-width: 68ch; color: #3A4049; }
.f-cat-tete__stat { margin-top: 12px; color: var(--gris-1); font-weight: 600; }

/* le tri */
.f-tri { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.f-tri__lib { margin-right: 4px; }
.f-tri__bouton {
  border: 1px solid var(--gris-2); background: #fff; cursor: pointer;
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: #3A4049;
  transition: all var(--transition);
}
.f-tri__bouton:hover { border-color: var(--encre); }
.f-tri__bouton[aria-pressed="true"] {
  background: var(--teinte); border-color: var(--teinte); color: #fff;
}

/* ============================================================ calque nouvelle */

.f-modale { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.f-modale[hidden] { display: none; }
.f-modale__voile { position: absolute; inset: 0; background: rgba(14, 17, 22, .55); backdrop-filter: blur(2px); }
.f-modale__boite {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: var(--papier); border-radius: 8px;
  box-shadow: 0 40px 80px -30px rgba(14, 17, 22, .7);
  padding: 26px 28px 28px;
}
.f-modale__tete { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.f-modale__x {
  border: 0; background: none; cursor: pointer; font-size: 30px; line-height: 1;
  color: var(--gris-1); padding: 0 4px;
}
.f-modale__x:hover { color: var(--encre); }
.f-modale__note {
  margin-top: 6px; padding: 12px 14px; border-radius: var(--rayon);
  background: #F2F1ED;
}
.f-modale__actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 22px; }

/* ================================================================== formulaires */

.f-form { display: flex; flex-direction: column; gap: 16px; }
/* un display: flex explicite l'emporte sur l'attribut [hidden] (styles auteur >
   feuille du navigateur) : on rétablit le masquage pour les blocs concernés. */
.f-form[hidden], .f-connecte[hidden], .f-composer__cible[hidden] { display: none; }
.f-label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 700; color: var(--encre); }
.f-label--titre { margin-bottom: 4px; }
.f-input, .f-select {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px; font-weight: 400;
  color: var(--encre); background: #fff;
  border: 1px solid var(--gris-2); border-radius: var(--rayon);
}
textarea.f-input { resize: vertical; }
.f-input:focus, .f-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(27, 77, 255, .16); }
.f-input::placeholder { color: var(--gris-1); font-weight: 400; }

/* ================================================================== /compte */

.f-compte-page {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.f-auth {
  background: #fff; border: 1px solid var(--gris-2); border-radius: 8px;
  padding: clamp(24px, 3vw, 40px);
}
.f-auth__tete { margin-bottom: 22px; }
.f-auth__tete .etiquette { color: var(--gris-1); display: block; margin-bottom: 10px; }
.f-auth__tete .corps { margin-top: 12px; max-width: 52ch; }

.f-onglets {
  display: flex; gap: 4px; padding: 4px; margin-bottom: 24px;
  background: #F2F1ED; border-radius: 999px;
}
.f-onglet {
  flex: 1; border: 0; background: none; cursor: pointer;
  padding: 11px 16px; border-radius: 999px;
  font-size: 15px; font-weight: 700; color: var(--gris-1);
  transition: background var(--transition), color var(--transition);
}
.f-onglet[aria-selected="true"] { background: #fff; color: var(--encre); box-shadow: 0 2px 8px -4px rgba(14,17,22,.4); }

.f-form--auth { gap: 18px; }
.f-form__paire { gap: 16px; }
.f-form__pied { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: -4px; }
.f-check { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; color: #3A4049; line-height: 1.45; }
.f-check input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--accent); }

.f-couleur { display: flex; flex-direction: column; }
.f-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.f-swatch {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  background: var(--av); border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--gris-2);
}
.f-swatch[data-actif="1"] { box-shadow: 0 0 0 2px var(--encre); }

.f-connecte { display: flex; flex-direction: column; gap: 20px; }
.f-connecte__ligne { display: flex; align-items: center; gap: 16px; }
.f-connecte__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.f-connecte__grille {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--gris-2); border: 1px solid var(--gris-2);
}
.f-connecte__bloc { background: var(--papier); padding: 16px 18px; }
.f-connecte__bloc .etiquette { color: var(--gris-1); display: block; margin-bottom: 8px; }

/* sections du formulaire d'inscription (compte unique client + forum) */
.f-form__section {
  color: var(--gris-1); margin: 8px 0 -2px; padding-top: 16px;
  border-top: 1px solid var(--gris-2);
}
.f-form--inscription > .f-form__section:first-of-type { padding-top: 0; border-top: 0; margin: 0; }
.f-label__opt { color: var(--gris-1); font-weight: 500; }

.f-aside {
  background: var(--encre); color: var(--papier); border-radius: 8px;
  padding: clamp(22px, 2.6vw, 32px); position: sticky; top: calc(var(--entete) + 20px);
}
.f-aside__titre { color: var(--papier); margin-bottom: 16px; }
.f-aside__liste { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.f-aside__liste li { position: relative; padding-left: 24px; font-size: 15px; color: rgba(250, 249, 246, .82); line-height: 1.5; }
.f-aside__liste li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 15px; height: 12px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 15"><rect x="0" y="1" width="12" height="9" fill="%23C8FF3D" opacity=".32"/><rect x="6" y="5" width="12" height="9" fill="%23C8FF3D" opacity=".32"/><rect x="6" y="5" width="6" height="5" fill="%23C8FF3D"/></svg>') center/contain no-repeat;
}

/* ----------------------------------------------------------------- toast */

.f-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
  z-index: 200; max-width: calc(100vw - 32px);
  background: var(--encre); color: var(--papier);
  padding: 13px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 20px 44px -22px rgba(14, 17, 22, .8);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.f-toast[data-visible="1"] { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.f-toast a { color: var(--calque-b); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================== responsive */

@media (max-width: 900px) {
  .f-cats { grid-template-columns: repeat(2, 1fr); }
  .f-compte-page { grid-template-columns: 1fr; }
  .f-aside { position: static; }
}

@media (max-width: 620px) {
  .f-cats { grid-template-columns: 1fr; }
  .f-hero__tete { flex-direction: column; }
  .f-actions { flex-direction: column; align-items: stretch; }
  /* en pile, flex-basis s'applique à la hauteur : on neutralise pour éviter
     un champ de recherche démesurément haut. */
  .f-recherche { flex: 0 0 auto; width: 100%; min-width: 0; }
  .f-nouvelle { width: 100%; }
  .f-form__paire { grid-template-columns: 1fr; }
  .f-connecte__grille { grid-template-columns: 1fr; }
  .f-reponse__enfants { margin-left: 8px; padding-left: 12px; }
  .f-post, .f-sujet { padding: 15px 15px; gap: 12px; }
  .f-votes { width: 32px; }
  .f-vote svg { width: 18px; height: 18px; }
  .f-composer__pied { flex-direction: column; align-items: stretch; }
  .f-composer__pied .bouton { width: 100%; }
}

@media (max-width: 390px) {
  .f-reponse__enfants { margin-left: 4px; padding-left: 10px; }
}

/* réduit le décalage d'imbrication au-delà du 3e niveau (lisibilité mobile) */
.f-reponse__enfants .f-reponse__enfants .f-reponse__enfants { margin-left: 0; }

/* =================================================== lien « Modération » */
.f-lien-moderation { flex: none; white-space: nowrap; }
.f-lien-moderation[hidden] { display: none; }

/* ============================================== proposer un sous-forum */
.f-proposer-section { border-top: 1px solid var(--gris-2); }
.f-proposer { max-width: 760px; }
.f-proposer__pied {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-top: 4px;
}
.f-proposer__pied .bouton { flex: none; }
.f-proposer__note { margin: 0; max-width: 46ch; }

/* ========================================================= chargement gabarit */
.f-shell__charge { margin-top: 14px; }

/* ============================================================ modération */
.f-mod-tete { max-width: 68ch; }
.f-mod-charge { margin-top: 20px; }
.f-mod-refus {
  margin-top: 24px; padding: 22px; border: 1px solid var(--gris-2);
  border-radius: var(--rayon); background: #fff; max-width: 66ch;
}
.f-mod-sep { margin-top: 44px; }
.f-mod-liste { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.f-mod-carte {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--gris-2); border-radius: var(--rayon);
}
.f-mod-carte__corps { min-width: 0; }
.f-mod-carte__titre { font-size: 18px; font-weight: 700; color: var(--encre); margin: 0 0 4px; }
.f-mod-carte__titre a { color: inherit; text-decoration: none; }
.f-mod-carte__titre a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.f-mod-carte__meta { margin: 6px 0 0; }
.f-mod-carte__actions { flex: none; display: flex; gap: 10px; }
.f-mod-carte__actions .bouton { height: 42px; padding: 0 18px; }
.f-mod-vide { margin-top: 12px; }

@media (max-width: 620px) {
  .f-proposer__pied { flex-direction: column; align-items: stretch; }
  .f-proposer__pied .bouton { width: 100%; }
  .f-mod-carte { flex-direction: column; align-items: stretch; }
  .f-mod-carte__actions .bouton { flex: 1; }
}

/* Bouton Traduire / Afficher l'original (forum-translate.js, API on-device) */
.f-post__traduire {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--gris-1); text-decoration: underline; text-underline-offset: 3px;
}
.f-post__traduire:hover { color: var(--encre); }
.f-post__traduire[disabled] { opacity: .6; cursor: default; }
.f-post__auto {
  display: block; margin-top: 8px; color: var(--gris-1); font-style: italic;
}
/* Étiquette « Original en <langue> » / « Traduit de <langue> » dans la barre
   d'actions, à gauche du bouton Traduire (modèle commentaire Google). */
.f-post__origine { color: var(--gris-1); font-style: italic; }
