/* =========================================================
   BLOT CONTACT PREMIUM
   ========================================================= */

body#module-blot_contact-contact .page-content.card.card-block{
  background: transparent;
  box-shadow: none;
  padding: 0;
  border: 0 !important;
}

/* Global shell */
.blot-contact-page{
  margin: 18px 0 30px;
  color: #1f2937;
  font-size: 15px;
}
.blot-alert{ margin-bottom: 14px; }

.blot-shell{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
}

.blot-surface{
  --bc-accent: #0ea5a6;            /* follow default (teal) */
  --bc-accent-soft: rgba(14,165,166,.14);
  --bc-accent-line: rgba(14,165,166,.45);

  background: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(17,24,39,.06); /* optionnel mais joli, remplace le liseré */
  border-radius: 14px;
  padding: 18px;
  position: relative;
}

/* Theme accents */
.blot-surface.bc-theme--follow{ --bc-accent:#0ea5a6; --bc-accent-soft:rgba(14,165,166,.14); --bc-accent-line:rgba(14,165,166,.45); }
.blot-surface.bc-theme--quote{  --bc-accent:#2563eb; --bc-accent-soft:rgba(37,99,235,.12);  --bc-accent-line:rgba(37,99,235,.40); }
.blot-surface.bc-theme--sav{    --bc-accent:#f59e0b; --bc-accent-soft:rgba(245,158,11,.16); --bc-accent-line:rgba(245,158,11,.45); }
.blot-surface.bc-theme--product{--bc-accent:#a855f7; --bc-accent-soft:rgba(168,85,247,.14); --bc-accent-line:rgba(168,85,247,.40); }
.blot-surface.bc-theme--general{--bc-accent:#64748b; --bc-accent-soft:rgba(100,116,139,.14);--bc-accent-line:rgba(100,116,139,.40); }

/* Colored “breath” pulse (2s) */
.blot-surface::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 16px;
  border: 0;
  opacity: 0;
  pointer-events:none;
}
.blot-surface.bc-breathe::after{
  border-color: var(--bc-accent-line);
  animation: bcPulse 2s ease-out 1;
}
@keyframes bcPulse{
  0%   { opacity: 0; transform: scale(1); box-shadow: 0 0 0 0 var(--bc-accent-soft); }
  30%  { opacity: 1; transform: scale(1.003); box-shadow: 0 0 0 10px var(--bc-accent-soft); }
  70%  { opacity: .7; transform: scale(1.002); box-shadow: 0 0 0 14px rgba(0,0,0,0); }
  100% { opacity: 0; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* Header */
.blot-head{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.blot-title{
  font-size: 28px;
  margin: 0;
  font-weight: 700; /* was too bold */
}
.blot-subtitle{
  margin-top: 4px;
  color: #6b7280;
  font-size: 16px;
}
.blot-tips{
  min-width: 280px;
  max-width: 360px;
  border: 1px solid rgba(17,24,39,.10);
  background: #fbfbfc;
  border-radius: 12px;
  padding: 10px 12px;
}

.blot-tips__label{
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  display: block;

  text-decoration: underline;
  text-underline-offset: 3px;     /* optionnel, plus joli */
  text-decoration-thickness: 2px; /* optionnel */
}

.blot-tips__text{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.35;
  min-height: 56px;

  /* centrage parfait du paragraphe par rapport aux flèches */
  display: flex;
  align-items: center;      /* centre vertical */
  justify-content: center;  /* centre horizontal dans la colonne */
  text-align: center;       /* centre les lignes */
  padding: 0 6px;
}
.blot-tip-fade{ animation: tipFade .35s ease-in-out; }
@keyframes tipFade{ from{opacity:.15;transform:translateY(2px)} to{opacity:1;transform:none} }

/* Categories */
.blot-cats{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 30px 0 15px;
}
.blot-cat{
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px;
  text-align:left;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.blot-cat:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17,24,39,.06);
}
.blot-cat.is-active{
  border-color: var(--bc-accent-line);
  box-shadow: 0 0 0 4px var(--bc-accent-soft);
}
.blot-cat__t{
  font-weight: 650;
  color: #111827;
  font-size: 18px;
}
.blot-cat__d{
  margin-top: 2px;
  font-size: 14px;
  color: #6b7280;
}

/* Subcats */
.blot-subcats{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 30px;
  justify-content: center; /* ✅ centre la ligne */
}
.blot-subcat{
  border: 1px solid rgba(17,24,39,.12);
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 16px;
  font-weight: 450;
  cursor:pointer;
  transition: background .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.blot-subcat:hover{
  border-color: var(--bc-accent-line);
}
.blot-subcat.is-active{
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: #fff;
  box-shadow: 0 8px 16px rgba(17,24,39,.10);
}

/* Grid layout */
.blot-grid{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap: 14px;
  align-items:start;
}

/* Aside / info */
.blot-aside{ display:flex; flex-direction:column; gap: 12px; }

.blot-info{
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--bc-accent-soft), rgba(255,255,255,0));
  padding: 12px;
}
.blot-info__title{
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}
.blot-info__intro{
  font-size: 14px;
  color: #4b5563;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blot-info__key{
  background:#fff;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 25px;
}
.blot-info__keyline{
  font-size: 13px;
  font-weight: 650;
  color: #374151;
}
.blot-info__spacer{ height: 8px; }

.blot-miniinputs{
  display:grid;
  gap: 8px;
}
.blot-info__note{
  font-size: 13px;
  color: #6b7280;
  margin-top: 0px;
  margin-bottom: 50px;
}

.blot-info__fill{
  margin-top: 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 12px;
  padding: 10px;
}
.blot-info__filltitle{
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.blot-info__filllist{
  margin: 0;
  padding-left: 16px;
  color: #374151;
  font-size: 13px;
  line-height: 1.35;
}
.blot-aside-card{
  border: 1px dashed rgba(17,24,39,.18);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}
.blot-aside-card__t{ font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.blot-aside-card__d{ font-size: 13px; color:#4b5563; line-height:1.35; }

/* Form card */
.blot-card{
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 14px;
  background: #fff;
  overflow:hidden;
}
.blot-card__head{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(17,24,39,.10);
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,1));
}
.blot-card__title{
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.blot-card__subtitle{
  font-size: 18px;
  color: #1f2937;
  margin-top: 2px;
  font-weight: 500;
}
.blot-card__body{
  padding: 14px;
}
.blot-card__foot{
  padding: 12px 14px;
  border-top: 1px solid rgba(17,24,39,.10);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

/* Fields */
.blot-field{ display:block; }
.blot-field__label{
  display:block;
  font-size: 16px;
  font-weight: 650;
  color: #730101;
  margin-bottom: 12px;
}
.blot-field input,
.blot-field textarea,
.blot-field select{
  width: 100%;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 12px;
  padding: 10px 10px;
  font-size: 16px;
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
  background:#fff;
}
.blot-field select{
  cursor: pointer;
  padding-right: 34px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.6 7.6a1 1 0 0 1 1.4 0L10 10.6l3-3a1 1 0 1 1 1.4 1.4l-3.7 3.7a1 1 0 0 1-1.4 0L5.6 9a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 12px;
}
.blot-field input:focus,
.blot-field textarea:focus,
.blot-field select:focus{
  border-color: var(--bc-accent-line);
  box-shadow: 0 0 0 4px var(--bc-accent-soft);
}
.blot-field--message textarea{
  min-height: 300px;
  resize: vertical;
  line-height: 1.55;
}

/* Row for name/email */
.blot-row{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Toolbar */
.bc-toolbar{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0 8px;
}
.bc-tool{
  border: 1px solid rgba(17,24,39,.18);
  background:#fff;
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 13px;
  cursor:pointer;
  transition: background .12s ease, border-color .12s ease;
}
.bc-tool:hover{
  border-color: var(--bc-accent-line);
  background: var(--bc-accent-soft);
}
.bc-toolbar__hint{
  margin-left: 6px;
  font-size: 12px;
  color:#6b7280;
}

/* File input (better “aucun fichier choisi”) */
.bc-file{
  display:flex;
  align-items:center;
  gap: 25px;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 12px;
  padding: 8px 10px;
  background:#fbfbfc;
}
.bc-file__input{ display:none; }
/* Centrage vertical parfait du bouton "Choisir un fichier" */
body#module-blot_contact-contact .bc-file__btn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px !important;
  white-space: nowrap;
  text-align: center;

  background: #fff;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 650;
  line-height: 1;
}


.bc-file__btn:hover{
  border-color: var(--bc-accent-line);
  background: var(--bc-accent-soft);
}
.bc-file__name{
  font-size: 16px;
  color:#006aff;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 420px;
  font-weight: 650;
}
.blot-help{
  font-size: 12px;
  color:#6b7280;
  margin-top: 6px;
}

/* Footer meta + submit */
.blot-meta{
  font-size: 16px;
  color:#6b7280;
}
.blot-submit{
  background: var(--bc-accent);
  color:#fff;
  border: 1px solid var(--bc-accent);
  border-radius: 12px;
  padding: 9px 18px;
  font-weight: 700;
  cursor:pointer;
  transition: filter .12s ease, transform .12s ease;
}
.blot-submit:hover{
  filter: brightness(.96);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1100px){
  .blot-cats{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blot-grid{ grid-template-columns: 1fr; }
  .blot-tips{ min-width: 240px; }
}
@media (max-width: 700px){
  .blot-head{ flex-direction: column; }
  .blot-tips{ width: 100%; max-width: none; }
  .blot-row{ grid-template-columns: 1fr; }
  .blot-subcats{ overflow-x:auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
}


body#module-blot_contact-contact #content-wrapper{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* === Largeur identique aux pages du thème (container XL) === */
body#module-blot_contact-contact .blot-shell{
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Espace entre Avant d’envoyer et Astuce */
body#module-blot_contact-contact .blot-info__fill{
  margin-bottom: 12px;
}

body#module-blot_contact-contact .blot-info__tip,
body#module-blot_contact-contact .blot-info__astuce,
body#module-blot_contact-contact .blot-info__hint{
  margin-top: 12px;
}

/* Ligne séparatrice sous le header */
body#module-blot_contact-contact .blot-head{
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(17,24,39,.10);
}


/* Accent couleur sur le rappel catégorie */
body#module-blot_contact-contact .bc-accent{
  color: var(--bc-accent);
}

/* “Pill” pour la sous-catégorie */
body#module-blot_contact-contact .bc-pill{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bc-accent-soft);
  border: 1px solid var(--bc-accent-line);
  color: var(--bc-accent);
  font-weight: 650;
  line-height: 1.2;
  vertical-align: middle;
}


.js-bc-main-label{
  color: var(--bc-accent);
  font-weight: 700;
}

.js-bc-sub-label{
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--bc-accent-line);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
  font-weight: 700;
}


/* Fix définitif : centrage parfait du texte dans le label "Choisir un fichier" */
body#module-blot_contact-contact .bc-file__btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 34px !important;
  min-height: 34px !important;

  padding: 0 12px !important;     /* aucune marge verticale */
  line-height: 1 !important;      /* on neutralise les line-height bizarres */
  vertical-align: middle !important;

  /* on évite les effets bootstrap */
  box-sizing: border-box !important;
  margin: 0 !important;

  background: #fff;
  border: 1px solid rgba(17,24,39,.18);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 650;
}

/* Si ton thème applique un style "button" aux label, on le neutralise */
body#module-blot_contact-contact label.bc-file__btn{
  text-decoration: none !important;
  letter-spacing: normal !important;
}


/* =========================================================
   Validation champs obligatoires (front)
   ========================================================= */
.bc-required{
  color:#dc2626;
  font-weight:700;
  margin-left:4px;
}

.bc-invalid{
  border-color:#dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,.12) !important;
}

.bc-field__error{
  display:none;
  margin-top:6px;
  font-size:12px;
  line-height:1.3;
  color:#dc2626;
}
.bc-field__error.is-visible{
  display:block;
}



/* ==========================
   Better “Informations utiles” bullets
   ========================== */
.blot-info__keyline{
  display:flex;
  align-items:flex-start;
  gap: 10px;
}
.blot-info__keyline:before{
  content:"•";
  display:inline-block;
  line-height: 1.1;
  margin-top: 2px;
  font-weight: 900;
  opacity: .9;
}
.blot-info__spacer{ display:none; }

/* ==========================
   Message type (Exemple)
   ========================== */
.blot-example{
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  padding: 14px;
}
.blot-example__head{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.blot-example__title{
  font-weight: 800;
}
.blot-example__btn{
  appearance:none;
  border: 1px solid rgba(0,0,0,.10);
  background: #f8fafc;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  cursor:pointer;
}
.blot-example__btn:hover{ filter: brightness(0.98); }
.blot-example__body{
  margin:0;
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.55;
  color: #111827;
}

.blot-example__foot{
  margin-top: 10px;
  display:flex;
  justify-content:flex-end;
}

/* ==========================
   Conseils carousel
   ========================== */
.blot-tips__carousel{
  display:grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 10px;
  align-items: center;
}
.blot-tips__nav{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.10);
  background: #ffffff;
  cursor:pointer;
  font-size: 16px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.blot-tips__nav:hover{
  border-color: var(--bc-accent-line);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
}

.blot-tips__text{ text-align:center; }

.blot-info__filltext{
  font-size: 14px;
  line-height: 1.55;
  color: #111827;
  opacity: .95;
}

/* Flash feedback (insert example) */
.bc-flash{
  animation: bcFlash .85s ease;
}
@keyframes bcFlash{
  0%{ box-shadow: 0 0 0 0 rgba(14,165,166,.0); }
  35%{ box-shadow: 0 0 0 4px rgba(14,165,166,.22); }
  100%{ box-shadow: 0 0 0 0 rgba(14,165,166,.0); }
}

/* ===== CONSEIL : titre + centrage texte vs flèches ===== */

/* 1) Plus d’espace entre "Conseil" et le texte */
.blot-advice__title,
.blot-contact-advice__title,
.blot-conseil__title{
  display: block;
  margin-bottom: 8px; /* augmente/diminue si besoin */
}

/* 2) Mise en page : flèche / texte / flèche en grille */
.blot-advice__row,
.blot-contact-advice__row,
.blot-conseil__row{
  display: grid;
  grid-template-columns: 34px 1fr 34px; /* largeur des flèches */
  align-items: center;
  column-gap: 12px;
}

/* 3) Texte centré même sur 2-3 lignes */
.blot-advice__text,
.blot-contact-advice__text,
.blot-conseil__text{
  margin: 0;
  text-align: center;
  line-height: 1.35;
  padding: 0 6px;

  /* le “truc” qui centre verticalement le paragraphe par rapport aux flèches */
  min-height: 44px;           /* à ajuster selon ton design */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 4) Flèches plus petites */
.blot-advice__btn,
.blot-contact-advice__btn,
.blot-conseil__btn{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* ===== UPLOAD : bouton réel + clic uniquement sur le bouton ===== */
.bc-upload{
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 14px 16px;
}

.bc-upload__input{
  position: absolute;
  left: -9999px; /* caché mais présent */
}

.bc-upload__btn{
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* Hover bouton upload = couleur catégorie (vars déjà présentes sur bc-theme) */
body#module-blot_contact-contact .bc-upload__btn:hover{
  border-color: var(--bc-accent-line);
  background: var(--bc-accent-soft);
  color: var(--bc-accent);
}

.bc-upload__name{
  display: inline-flex;
  align-items: center; /* centrage vertical */
  min-height: 22px;
  font-weight: 600;
  color: #1a73e8; /* comme ton rendu actuel */
}

.bc-upload__name.is-filled{
  color: #111;
}

.bc-upload__help{
  margin-top: 8px;
  font-size: 13px;
  opacity: .85;
}


/* =========================================================
   PATCH FINAL : Hover Upload + Bump/Glow bouton Envoyer
   (à coller TOUT EN BAS du fichier)
   ========================================================= */

/* 1) UPLOAD : on sécurise le hover même si le thème le casse */
body#module-blot_contact-contact .bc-file,
body#module-blot_contact-contact .bc-upload{
  position: relative;
}

body#module-blot_contact-contact .bc-file__btn,
body#module-blot_contact-contact .bc-upload__btn{
  position: relative;
  z-index: 2;
  pointer-events: auto !important;
  cursor: pointer !important;

  /* transitions plus “visibles” */
  transition:
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease,
    transform .12s ease,
    box-shadow .12s ease,
    filter .15s ease;
}

/* Hover direct + hover via la ligne (si l’élément est “capricieux”) */
body#module-blot_contact-contact .bc-file__btn:hover,
body#module-blot_contact-contact .bc-upload__btn:hover,
body#module-blot_contact-contact .bc-file:hover .bc-file__btn,
body#module-blot_contact-contact .bc-upload:hover .bc-upload__btn{
  background: var(--bc-accent) !important;
  border-color: var(--bc-accent) !important;
  color: #fff !important;

  transform: translateY(-1px);
  box-shadow:
    0 12px 20px rgba(17,24,39,.12),
    0 0 0 4px var(--bc-accent-soft);
}

body#module-blot_contact-contact .bc-file__btn:active,
body#module-blot_contact-contact .bc-upload__btn:active{
  transform: translateY(0) scale(.98);
  box-shadow: 0 8px 14px rgba(17,24,39,.10);
}

body#module-blot_contact-contact .bc-file__btn:focus-visible,
body#module-blot_contact-contact .bc-upload__btn:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px var(--bc-accent-soft),
    0 12px 20px rgba(17,24,39,.12);
}

/* 2) ENVOYER : bump + glow + changement visuel */
@keyframes bcBump{
  0%   { transform: translateY(0) scale(1); }
  45%  { transform: translateY(-2px) scale(1.03); }
  100% { transform: translateY(-1px) scale(1.02); }
}

body#module-blot_contact-contact .blot-submit{
  position: relative;
  will-change: transform;
  box-shadow: 0 10px 18px rgba(17,24,39,.12);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

body#module-blot_contact-contact .blot-submit:hover{
  /* “changement de couleur” sans casser ta var : on joue sur le rendu */
  filter: brightness(1.06) saturate(1.06);

  /* bump */
  animation: bcBump .22s ease-out 1 forwards;

  /* glow/halo */
  box-shadow:
    0 16px 28px rgba(17,24,39,.16),
    0 0 0 4px var(--bc-accent-soft);
}

body#module-blot_contact-contact .blot-submit:active{
  animation: none;
  transform: translateY(0) scale(.98);
  box-shadow: 0 10px 18px rgba(17,24,39,.12);
  filter: brightness(.98);
}

body#module-blot_contact-contact .blot-submit:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 4px var(--bc-accent-soft),
    0 16px 28px rgba(17,24,39,.16);
}
