
/* ==========================================================
   SFX – Activités v1.0
   Interface moderne, claire et intuitive.
   ========================================================== */

.sfx-v1-app,
.sfx-v1-app *{box-sizing:border-box}

.sfx-v1-app{
  --sfx-blue:#2563eb;
  --sfx-blue-2:#3b82f6;
  --sfx-navy:#14233d;
  --sfx-text:#172033;
  --sfx-muted:#667085;
  --sfx-line:#e5eaf1;
  --sfx-bg:#f5f7fb;
  --sfx-card:#fff;
  --sfx-green:#16a34a;
  --sfx-amber:#d97706;
  --sfx-red:#dc2626;
  width:100%;
  max-width:100%;
  min-width:0;
  color:var(--sfx-text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.45;
  container-type:inline-size;
  container-name:sfxapp;
}

.sfx-v1-app a{text-decoration:none}
.sfx-v1-app button,.sfx-v1-app input,.sfx-v1-app select,.sfx-v1-app textarea{font:inherit}

.sfx-v1-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  width:min(520px,100%);
  margin:0 auto 20px;
  padding:5px;
  border:1px solid #e3e8ef;
  border-radius:13px;
  background:#eef2f7;
}
.sfx-v1-tabs a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:8px 12px;
  border-radius:9px;
  color:#475467;
  font-size:.88rem;
  font-weight:800;
}
.sfx-v1-tabs a.active{
  color:#fff;
  background:linear-gradient(135deg,var(--sfx-blue),var(--sfx-blue-2));
  box-shadow:0 4px 10px rgba(37,99,235,.2);
}

.sfx-v1-overline{
  display:block;
  margin-bottom:4px;
  color:#5c83d7;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.sfx-v1-public-head{
  margin-bottom:18px;
}
.sfx-v1-public-head h2{
  margin:0 0 4px;
  font-size:1.65rem;
  letter-spacing:-.02em;
}
.sfx-v1-public-head p{
  margin:0;
  color:var(--sfx-muted);
}

.sfx-v1-activity-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(340px,100%),1fr));
  gap:18px;
}
.sfx-v1-activity-card{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:20px;
  border:1px solid var(--sfx-line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.055);
}
.sfx-v1-activity-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
}
.sfx-v1-period{
  display:block;
  margin-bottom:4px;
  color:#64748b;
  font-size:.75rem;
  font-weight:800;
}
.sfx-v1-activity-card h3{
  margin:0;
  color:#0f172a;
  font-size:1.25rem;
  line-height:1.25;
}
.sfx-v1-availability{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  padding:6px 9px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:800;
}
.sfx-v1-availability.available{color:#166534;background:#dcfce7}
.sfx-v1-availability.waiting{color:#92400e;background:#fef3c7}
.sfx-v1-description{margin:0 0 14px;color:#475569;font-size:.92rem}
.sfx-v1-description p:last-child{margin-bottom:0}

.sfx-v1-activity-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin:0 0 15px;
}
.sfx-v1-activity-meta div{
  min-width:0;
  padding:10px 11px;
  border:1px solid #edf1f5;
  border-radius:10px;
  background:#f8fafc;
}
.sfx-v1-activity-meta small{
  display:block;
  margin-bottom:2px;
  color:#94a3b8;
  font-size:.62rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.sfx-v1-activity-meta strong{
  display:block;
  color:#334155;
  font-size:.82rem;
  overflow-wrap:anywhere;
}

.sfx-v1-register{
  margin-top:auto;
  border:1px solid #dce5ef;
  border-radius:12px;
  overflow:hidden;
}
.sfx-v1-register summary{
  position:relative;
  padding:12px 40px 12px 14px;
  background:#f8fbff;
  color:#1d4ed8;
  font-size:.86rem;
  font-weight:800;
  cursor:pointer;
  list-style:none;
}
.sfx-v1-register summary::-webkit-details-marker{display:none}
.sfx-v1-register summary::after{
  content:"+";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 2px 6px rgba(15,23,42,.08);
}
.sfx-v1-register[open] summary::after{content:"−"}

.sfx-v1-inline-note{
  margin:12px 14px 0;
  padding:10px 12px;
  border-radius:9px;
  background:#fffbeb;
  color:#854d0e;
  font-size:.8rem;
}
.sfx-v1-closed{
  margin-top:auto;
  padding:11px 12px;
  border-radius:10px;
  background:#f8fafc;
  color:#64748b;
  font-size:.82rem;
}

.sfx-v1-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:15px;
  background:#fff;
}
.sfx-v1-field{min-width:0}
.sfx-v1-field.full,.sfx-v1-form .full{grid-column:1/-1}
.sfx-v1-field label{
  display:block;
  margin-bottom:5px;
  color:#475467;
  font-size:.76rem;
  font-weight:800;
}
.sfx-v1-field input,.sfx-v1-field textarea{
  width:100%;
  min-height:40px;
  padding:8px 10px;
  border:1px solid #cfd8e5;
  border-radius:8px;
  background:#fff;
  outline:none;
}
.sfx-v1-field textarea{resize:vertical}
.sfx-v1-field input:focus,.sfx-v1-field textarea:focus{
  border-color:#7da5f6;
  box-shadow:0 0 0 3px rgba(37,99,235,.09);
}
.sfx-v1-consent{
  color:#475467;
  font-size:.78rem;
}
.sfx-v1-consent label{display:flex;gap:8px;align-items:flex-start}

.sfx-v1-primary,.sfx-v1-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 14px;
  border-radius:9px;
  font-weight:800;
  text-decoration:none!important;
}
.sfx-v1-primary{
  border:0;
  background:linear-gradient(135deg,var(--sfx-blue),var(--sfx-blue-2));
  color:#fff!important;
  cursor:pointer;
}
.sfx-v1-secondary{
  border:1px solid #cfd8e5;
  background:#fff;
  color:#334155!important;
}
.sfx-v1-primary.compact,.sfx-v1-secondary.compact{min-height:38px;padding:7px 11px;font-size:.8rem}

.sfx-v1-alert{
  margin:0 0 14px;
  padding:11px 13px;
  border-radius:10px;
  border:1px solid transparent;
  font-size:.84rem;
  font-weight:650;
}
.sfx-v1-alert.success{color:#166534;background:#f0fdf4;border-color:#bbf7d0}
.sfx-v1-alert.warning{color:#854d0e;background:#fffbeb;border-color:#fde68a}
.sfx-v1-alert.error{color:#991b1b;background:#fef2f2;border-color:#fecaca}
.sfx-v1-alert.info{color:#1e40af;background:#eff6ff;border-color:#bfdbfe}

.sfx-v1-empty{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  padding:28px;
  border:1px dashed #cfd8e5;
  border-radius:12px;
  color:#667085;
  text-align:center;
}
.sfx-v1-empty strong{color:#344054}

/* ADMIN */

.sfx-v1-admin{
  width:100%;
  max-width:100%;
  min-width:0;
}

.sfx-v1-admin-hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:20px 22px;
  margin-bottom:14px;
  border-radius:16px;
  background:linear-gradient(135deg,#14233d,#20395f);
  color:#fff;
}
.sfx-v1-admin-hero .sfx-v1-overline{color:#9dbdff}
.sfx-v1-admin-hero h2{margin:0 0 4px;color:#fff;font-size:1.5rem}
.sfx-v1-admin-hero p{margin:0;color:#d9e4f4;font-size:.88rem}
.sfx-v1-admin-mark{
  display:grid;
  place-items:center;
  width:50px;height:50px;
  flex:0 0 50px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:14px;
  background:rgba(255,255,255,.1);
  font-size:.9rem;
  font-weight:900;
}

.sfx-v1-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-bottom:14px;
}
.sfx-v1-stat{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  padding:13px;
  border:1px solid var(--sfx-line);
  border-radius:12px;
  background:#fff;
}
.sfx-v1-stat > span{
  display:grid;
  place-items:center;
  width:34px;height:34px;
  flex:0 0 34px;
  border-radius:10px;
  font-weight:900;
}
.sfx-v1-stat.green > span{color:#15803d;background:#dcfce7}
.sfx-v1-stat.amber > span{color:#b45309;background:#fef3c7}
.sfx-v1-stat.blue > span{color:#1d4ed8;background:#dbeafe}
.sfx-v1-stat.slate > span{color:#475569;background:#e2e8f0}
.sfx-v1-stat strong{display:block;font-size:1.2rem;line-height:1}
.sfx-v1-stat small{display:block;margin-top:2px;color:#667085;font-size:.72rem}

.sfx-v1-admin-panel{
  margin-bottom:14px;
  padding:15px;
  border:1px solid var(--sfx-line);
  border-radius:14px;
  background:#fff;
}
.sfx-v1-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:12px;
}
.sfx-v1-panel-head h3{margin:0;font-size:1.05rem}
.sfx-v1-panel-head p{margin:0;color:#667085;font-size:.8rem}

.sfx-v1-pdf-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:10px;
}
.sfx-v1-pdf-card{
  display:grid;
  grid-template-columns:minmax(170px,1fr) minmax(220px,1.2fr) auto;
  gap:10px;
  align-items:center;
  margin:0;
  padding:12px;
  border:1px solid #e8edf3;
  border-radius:10px;
  background:#f8fafc;
}
.sfx-v1-pdf-card:last-child{grid-template-columns:minmax(0,1fr) auto}
.sfx-v1-pdf-card strong{display:block;font-size:.84rem}
.sfx-v1-pdf-card small{display:block;margin-top:2px;color:#667085;font-size:.72rem}
.sfx-v1-pdf-card select{
  width:100%;
  min-height:38px;
  padding:0 9px;
  border:1px solid #cfd8e5;
  border-radius:8px;
  background:#fff;
}

.sfx-v1-filters{
  display:grid;
  grid-template-columns:minmax(170px,.8fr) minmax(150px,.7fr) minmax(280px,1.45fr) auto;
  gap:10px;
  align-items:end;
  margin-bottom:12px;
  padding:12px;
  border:1px solid #e8edf3;
  border-radius:10px;
  background:#f8fafc;
}
.sfx-v1-filter{min-width:0}
.sfx-v1-filter label{
  display:block;
  margin-bottom:4px;
  color:#475467;
  font-size:.7rem;
  font-weight:800;
}
.sfx-v1-filter input,.sfx-v1-filter select{
  width:100%;
  min-height:38px;
  padding:0 9px;
  border:1px solid #cfd8e5;
  border-radius:8px;
  background:#fff;
}
.sfx-v1-filter-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.sfx-v1-filter-actions > a{
  color:#667085;
  font-size:.76rem;
  font-weight:750;
}

.sfx-v1-reg-list{
  width:100%;
  max-width:100%;
  min-width:0;
  display:grid;
  gap:7px;
}
.sfx-v1-reg-head,.sfx-v1-reg-row{
  display:grid;
  grid-template-columns:
    minmax(180px,1.35fr)
    minmax(65px,.48fr)
    minmax(110px,.85fr)
    minmax(120px,.92fr)
    minmax(170px,1.25fr)
    minmax(105px,.78fr)
    minmax(65px,.48fr)
    minmax(145px,1fr);
  gap:9px;
  align-items:center;
  width:100%;
  min-width:0;
}
.sfx-v1-reg-head{
  padding:0 11px 4px;
  color:#8b95a7;
  font-size:.61rem;
  font-weight:800;
  letter-spacing:.055em;
  text-transform:uppercase;
}
.sfx-v1-reg-row{
  padding:10px 11px;
  border:1px solid #e4e9f0;
  border-left:4px solid #cbd5e1;
  border-radius:10px;
  background:#fff;
}
.sfx-v1-reg-row.confirmed{border-left-color:#22c55e}
.sfx-v1-reg-row.waiting{border-left-color:#f59e0b}

.sfx-v1-reg-cell{
  min-width:0;
  color:#344054;
  font-size:.76rem;
  line-height:1.35;
  word-break:normal;
  overflow-wrap:anywhere;
  hyphens:none;
}
.sfx-v1-reg-cell.student{
  display:flex;
  align-items:center;
  gap:7px;
}
.sfx-v1-avatar{
  display:grid;
  place-items:center;
  width:32px;height:32px;
  flex:0 0 32px;
  border-radius:50%;
  background:#e8f0ff;
  color:#2563eb;
  font-size:.66rem;
  font-weight:900;
}
.sfx-v1-reg-cell.student strong{color:#101828;font-size:.79rem}
.sfx-v1-reg-cell.contact{
  display:flex;
  flex-direction:column;
  gap:1px;
}
.sfx-v1-reg-cell.contact a{color:#2563eb;overflow-wrap:anywhere}
.sfx-v1-reg-cell.contact small{color:#667085;font-size:.69rem}

.sfx-v1-status{
  display:inline-flex;
  width:auto;
  max-width:100%;
  padding:4px 7px;
  border-radius:999px;
  font-size:.66rem;
  font-weight:800;
}
.sfx-v1-status.confirmed{color:#166534;background:#dcfce7}
.sfx-v1-status.waiting{color:#92400e;background:#fef3c7}

.sfx-v1-reg-cell.actions{
  display:flex;
  flex-wrap:wrap;
  gap:4px;
}
.sfx-v1-reg-cell.actions form{width:auto;margin:0}
.sfx-v1-action{
  min-height:28px;
  padding:4px 6px;
  border:1px solid transparent;
  border-radius:7px;
  background:#fff;
  font-size:.65rem;
  font-weight:800;
  cursor:pointer;
}
.sfx-v1-action.confirm{color:#166534;background:#f0fdf4;border-color:#bbf7d0}
.sfx-v1-action.waiting{color:#92400e;background:#fffbeb;border-color:#fde68a}
.sfx-v1-action.delete{color:#991b1b;background:#fef2f2;border-color:#fecaca}

/* Adaptation à la largeur réelle du module, y compris avec zoom navigateur. */
@container sfxapp (max-width:1050px){
  .sfx-v1-reg-head{display:none}
  .sfx-v1-reg-row{
    grid-template-columns:1fr 1fr;
    gap:10px 16px;
    padding:13px;
  }
  .sfx-v1-reg-cell{
    position:relative;
    padding-top:13px;
  }
  .sfx-v1-reg-cell::before{
    content:attr(data-label);
    position:absolute;
    top:0;left:0;
    color:#98a2b3;
    font-size:.56rem;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
  }
  .sfx-v1-reg-cell.student,.sfx-v1-reg-cell.contact,.sfx-v1-reg-cell.actions{grid-column:1/-1}
  .sfx-v1-reg-cell.student{padding-top:0}
  .sfx-v1-reg-cell.student::before{display:none}
  .sfx-v1-pdf-grid{grid-template-columns:1fr}
  .sfx-v1-filters{grid-template-columns:1fr 1fr}
  .sfx-v1-filter.search,.sfx-v1-filter-actions{grid-column:1/-1}
}

@container sfxapp (max-width:680px){
  .sfx-v1-stats{grid-template-columns:1fr 1fr}
  .sfx-v1-reg-row{grid-template-columns:1fr}
  .sfx-v1-reg-cell.student,.sfx-v1-reg-cell.contact,.sfx-v1-reg-cell.actions{grid-column:1}
  .sfx-v1-filters{grid-template-columns:1fr}
  .sfx-v1-filter.search,.sfx-v1-filter-actions{grid-column:1}
  .sfx-v1-pdf-card,.sfx-v1-pdf-card:last-child{grid-template-columns:1fr}
  .sfx-v1-filter-actions{display:grid;grid-template-columns:1fr}
  .sfx-v1-filter-actions .sfx-v1-primary{width:100%}
  .sfx-v1-filter-actions > a{text-align:center}
  .sfx-v1-activity-meta{grid-template-columns:1fr}
  .sfx-v1-form{grid-template-columns:1fr}
  .sfx-v1-field.full,.sfx-v1-form .full{grid-column:1}
}

@container sfxapp (max-width:430px){
  .sfx-v1-stats{grid-template-columns:1fr}
  .sfx-v1-admin-hero{padding:16px}
  .sfx-v1-admin-mark{display:none}
  .sfx-v1-admin-panel{padding:12px}
  .sfx-v1-panel-head{display:block}
  .sfx-v1-panel-head p{margin-top:4px}
  .sfx-v1-reg-cell.actions{display:grid;grid-template-columns:1fr}
  .sfx-v1-reg-cell.actions form,.sfx-v1-action{width:100%}
}


/* Création d'activité depuis le frontend — v1.2 */
.sfx-v1-create-activity{
  margin:0 0 14px;
  border:1px solid #dce5ef;
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}
.sfx-v1-create-activity > summary{
  position:relative;
  list-style:none;
  cursor:pointer;
  padding:12px 44px 12px 15px;
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  font-size:.86rem;
  font-weight:800;
}
.sfx-v1-create-activity > summary::-webkit-details-marker{display:none}
.sfx-v1-create-activity > summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  font-size:1.1rem;
  font-weight:900;
}
.sfx-v1-create-activity[open] > summary::after{content:"−"}

.sfx-v1-create-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:16px;
  background:#f8fafc;
}
.sfx-v1-create-field{min-width:0}
.sfx-v1-create-field.full,
.sfx-v1-create-check.full,
.sfx-v1-create-actions.full{
  grid-column:1/-1;
}
.sfx-v1-create-field label{
  display:block;
  margin-bottom:5px;
  color:#475467;
  font-size:.75rem;
  font-weight:800;
}
.sfx-v1-create-field input,
.sfx-v1-create-field textarea{
  width:100%;
  min-height:40px;
  padding:8px 10px;
  border:1px solid #cfd8e5;
  border-radius:8px;
  background:#fff;
  outline:none;
}
.sfx-v1-create-field textarea{resize:vertical}
.sfx-v1-create-field input:focus,
.sfx-v1-create-field textarea:focus{
  border-color:#7da5f6;
  box-shadow:0 0 0 3px rgba(37,99,235,.09);
}
.sfx-v1-create-check{
  padding:10px 12px;
  border:1px solid #e5eaf1;
  border-radius:9px;
  background:#fff;
}
.sfx-v1-create-check label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#475467;
  font-size:.8rem;
  font-weight:700;
}
.sfx-v1-create-actions{
  display:flex;
  justify-content:flex-end;
}
@container sfxapp (max-width:680px){
  .sfx-v1-create-form{
    grid-template-columns:1fr;
  }
  .sfx-v1-create-field.full,
  .sfx-v1-create-check.full,
  .sfx-v1-create-actions.full{
    grid-column:1;
  }
  .sfx-v1-create-actions .sfx-v1-primary{
    width:100%;
  }
}

/* Import fichier + calendrier des réservations — v1.3 */
.sfx-v1-create-upload{padding:14px;border:1px dashed #b9c8da;border-radius:11px;background:#f8fbff}
.sfx-v1-create-upload label,.sfx-v1-create-dates label{display:block;margin-bottom:6px;color:#334155;font-size:.78rem;font-weight:800}
.sfx-v1-create-upload input[type=file]{width:100%;padding:10px;border:1px solid #d6dee9;border-radius:9px;background:#fff}
.sfx-v1-create-upload small{display:block;margin-top:7px;color:#64748b;font-size:.72rem;line-height:1.45}
.sfx-v1-create-field label span{color:#94a3b8;font-weight:600}
.sfx-v1-create-dates{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:13px;border:1px solid #bfdbfe;border-radius:11px;background:#eff6ff}
.sfx-v1-create-dates input{width:100%;min-height:40px;padding:7px 9px;border:1px solid #bfd0e4;border-radius:8px;background:#fff}
.sfx-v1-create-dates p{grid-column:1/-1;margin:0;color:#1e40af;font-size:.73rem}
.sfx-v1-create-more{border:1px solid #e2e8f0;border-radius:10px;background:#fff;overflow:hidden}
.sfx-v1-create-more > summary{padding:10px 12px;cursor:pointer;color:#475569;font-size:.78rem;font-weight:800;background:#f8fafc}
.sfx-v1-create-more-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:12px}
@container sfxapp (max-width:680px){.sfx-v1-create-dates,.sfx-v1-create-more-grid{grid-template-columns:1fr}.sfx-v1-create-dates p,.sfx-v1-create-more-grid .full{grid-column:1}}


/* Assistant d'import PDF — v1.4 */
.sfx-v1-import-panel{margin:0 0 14px;padding:15px;border:1px solid var(--sfx-line);border-radius:14px;background:#fff}
.sfx-v1-import-upload{display:grid;grid-template-columns:minmax(220px,1fr) minmax(260px,1.4fr) auto;gap:12px;align-items:center;padding:14px;border:1px dashed #b8c7da;border-radius:12px;background:#f8fbff}
.sfx-v1-import-upload label{display:flex;flex-direction:column;gap:2px;color:#334155}.sfx-v1-import-upload label span{font-size:.72rem;color:#64748b}.sfx-v1-import-upload input[type=file]{width:100%;padding:9px;border:1px solid #d4deea;border-radius:9px;background:#fff}
.sfx-v1-import-source{margin-bottom:10px;padding:9px 11px;border-radius:9px;background:#eff6ff;color:#1e40af;font-size:.78rem}.sfx-v1-import-list{display:grid;gap:9px}
.sfx-v1-import-card{padding:12px;border:1px solid #e4e9f0;border-radius:11px;background:#fff}.sfx-v1-import-main{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-bottom:9px}.sfx-v1-import-main>div{display:grid;grid-template-columns:28px 1fr;column-gap:8px;align-items:center}.sfx-v1-import-main strong{font-size:.86rem}.sfx-v1-import-main small{grid-column:2;color:#64748b;font-size:.7rem}.sfx-v1-import-index{grid-row:1/3;display:grid;place-items:center;width:28px;height:28px;border-radius:8px;background:#e8f0ff;color:#2563eb;font-size:.7rem;font-weight:900}
.sfx-v1-import-details{display:grid;grid-template-columns:1.4fr .55fr .6fr 1fr .9fr .55fr;gap:8px}.sfx-v1-import-details span{min-width:0;padding:8px;border-radius:8px;background:#f8fafc;color:#475569;font-size:.69rem;overflow-wrap:anywhere}.sfx-v1-import-details b{display:block;margin-bottom:2px;color:#94a3b8;font-size:.56rem;text-transform:uppercase;letter-spacing:.05em}
.sfx-v1-import-dates{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px;padding-top:10px;border-top:1px solid #edf0f4}.sfx-v1-import-dates label{color:#475467;font-size:.7rem;font-weight:800}.sfx-v1-import-dates input{display:block;width:100%;min-height:38px;margin-top:4px;padding:6px 8px;border:1px solid #cfd8e5;border-radius:8px;background:#fff}
.sfx-v1-import-external{margin-top:9px;padding:9px 10px;border-radius:8px;background:#fffbeb;color:#854d0e;font-size:.73rem}.sfx-v1-import-actions{display:flex;justify-content:flex-end;margin-top:12px}.sfx-v1-import-cancel{text-align:right;margin-top:6px}.sfx-v1-import-cancel button{border:0;background:transparent;color:#667085;font-size:.72rem;text-decoration:underline;cursor:pointer}
@container sfxapp (max-width:900px){.sfx-v1-import-upload{grid-template-columns:1fr}.sfx-v1-import-details{grid-template-columns:1fr 1fr 1fr}}
@container sfxapp (max-width:600px){.sfx-v1-import-details,.sfx-v1-import-dates{grid-template-columns:1fr}.sfx-v1-import-main{display:block}.sfx-v1-import-main .sfx-v1-status{margin-top:8px}.sfx-v1-import-actions .sfx-v1-primary{width:100%}}


/* ==========================================================
   FRONTEND PUBLIC v1.6 — refonte visuelle
   ========================================================== */
.sfx-v1-app.is-public{
  width:min(1320px,calc(100vw - 32px))!important;
  max-width:none!important;
  margin-left:50%!important;
  margin-right:0!important;
  transform:translateX(-50%)!important;
}
.sfx-v1-app.is-admin{
  width:min(1320px,calc(100vw - 32px))!important;
  max-width:none!important;
  margin-left:50%!important;
  margin-right:0!important;
  transform:translateX(-50%)!important;
}
.sfx-v1-app.is-public .sfx-v1-tabs{margin-bottom:16px}
.sfx-v16-hero{display:grid;grid-template-columns:1.15fr .85fr;min-height:260px;margin:0 0 16px;border:1px solid #d9e9f7;border-radius:24px;overflow:hidden;background:linear-gradient(135deg,#edf8ff 0%,#f7fbff 58%,#f5fbea 100%);box-shadow:0 12px 35px rgba(30,64,175,.06)}
.sfx-v16-hero-copy{padding:34px 38px;display:flex;flex-direction:column;justify-content:center}
.sfx-v16-kicker{margin-bottom:8px;color:#1463df;font-size:.82rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.sfx-v16-hero h2{margin:0 0 10px!important;color:#123064;font-size:clamp(2rem,3.6vw,3.35rem)!important;line-height:1.02!important;letter-spacing:-.045em!important;font-weight:900!important}
.sfx-v16-hero h2 em{color:#f03878;font-style:normal}.sfx-v16-hero h2 strong{color:#55a819;font-weight:900}
.sfx-v16-hero p{max-width:720px;margin:0 0 22px;color:#27415f;font-size:1rem;line-height:1.55}
.sfx-v16-benefits{display:flex;flex-wrap:wrap;gap:12px 24px;padding-top:16px;border-top:1px solid rgba(58,114,173,.13);color:#2b4362;font-size:.82rem}
.sfx-v16-benefits span:nth-child(1){color:#f23870}.sfx-v16-benefits span:nth-child(2){color:#59a919}.sfx-v16-benefits span:nth-child(3){color:#f0b400}.sfx-v16-benefits span:nth-child(4){color:#1f62e4}.sfx-v16-benefits b{margin-left:4px;color:#2b4362}
.sfx-v16-hero-image{min-height:260px;background-image:linear-gradient(90deg,rgba(247,251,255,.35),rgba(247,251,255,0) 35%),url('hero.jpg');background-size:cover;background-position:center 28%}

.sfx-v16-toolbar{display:grid;grid-template-columns:minmax(300px,1.45fr) repeat(3,minmax(170px,.75fr)) auto;gap:10px;align-items:center;margin-bottom:10px;padding:12px;border:1px solid #e2eaf4;border-radius:16px;background:#f6f9fc}
.sfx-v16-search,.sfx-v16-select{display:flex;align-items:center;gap:9px;min-width:0;height:46px;padding:0 12px;border:1px solid #d6e1ed;border-radius:11px;background:#fff;color:#23436a;box-shadow:0 2px 6px rgba(15,23,42,.03)}
.sfx-v16-search span,.sfx-v16-select span{flex:0 0 auto;font-weight:900;color:#204f9f}
.sfx-v16-search input,.sfx-v16-select select{width:100%;height:100%;min-width:0;padding:0!important;border:0!important;outline:0!important;background:transparent!important;box-shadow:none!important;color:#344b66;font-size:.86rem}
.sfx-v16-select select{cursor:pointer}
.sfx-v16-reset{height:46px;padding:0 14px;border:0;background:transparent;color:#274b78;font-size:.8rem;font-weight:800;cursor:pointer;white-space:nowrap}
.sfx-v16-resultline{margin:10px 2px 12px;color:#69798f;font-size:.78rem}.sfx-v16-resultline strong{color:#1f3d63}

.sfx-v16-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;align-items:start}
.sfx-v16-card{--accent:#2467e8;display:flex;flex-direction:column;min-width:0;border:1px solid #e0e7ef;border-radius:18px;overflow:hidden;background:#fff;box-shadow:0 9px 24px rgba(15,23,42,.075);transition:transform .18s ease,box-shadow .18s ease}
.sfx-v16-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(15,23,42,.11)}
.sfx-v16-card[hidden]{display:none!important}
.sfx-v16-card.theme-dance{--accent:#ef2f88}.sfx-v16-card.theme-photo{--accent:#7c35e7}.sfx-v16-card.theme-science{--accent:#19ae43}.sfx-v16-card.theme-cooking{--accent:#ff6d00}.sfx-v16-card.theme-games{--accent:#9b6418}.sfx-v16-card.theme-music{--accent:#099ba5}.sfx-v16-card.theme-arts{--accent:#7b31e7}.sfx-v16-card.theme-wellness{--accent:#e14c91}
.sfx-v16-card-media{position:relative;height:138px;background-size:cover;background-position:center;overflow:hidden}
.sfx-v16-card-media:after{content:"";position:absolute;inset:45% 0 0;background:linear-gradient(to bottom,transparent,rgba(0,0,0,.18))}
.sfx-v16-category,.sfx-v16-place{position:absolute;z-index:2;bottom:11px;display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:.7rem;font-weight:900;box-shadow:0 3px 12px rgba(0,0,0,.12)}
.sfx-v16-category{left:11px;color:#fff;background:var(--accent)}.sfx-v16-category i{font-style:normal;font-size:.8rem}
.sfx-v16-place{right:11px;color:#176128;background:#dcfce7;border:1px solid rgba(255,255,255,.75)}
.sfx-v16-place.wait{color:#8a4f09;background:#fef3c7}.sfx-v16-place.soon{color:#1e4b97;background:#e5efff}.sfx-v16-place.closed{color:#667085;background:#eef2f6}.sfx-v16-place.external{color:#714414;background:#fff0cf}
.sfx-v16-card-body{display:flex;flex-direction:column;flex:1;padding:15px 15px 14px}
.sfx-v16-period{display:block;margin-bottom:4px;color:#75859b;font-size:.62rem;font-weight:800;line-height:1.35;text-transform:uppercase;letter-spacing:.035em}
.sfx-v16-card h3{margin:0 0 8px!important;color:#123064!important;font-size:1.08rem!important;line-height:1.22!important;letter-spacing:-.015em!important;font-weight:900!important}
.sfx-v16-desc{min-height:58px;margin:0 0 11px!important;color:#61728a!important;font-size:.8rem!important;line-height:1.5!important}
.sfx-v16-facts{display:grid;gap:6px;margin:0 0 13px}.sfx-v16-facts div{display:grid;grid-template-columns:18px minmax(0,1fr);gap:5px;align-items:start;color:#506782;font-size:.75rem}.sfx-v16-facts span{color:var(--accent);font-weight:900}.sfx-v16-facts b{min-width:0;color:#435b77;font-weight:750;overflow-wrap:anywhere}
.sfx-v16-cta{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px;width:100%!important;min-height:42px!important;margin-top:auto!important;padding:9px 12px!important;border:0!important;border-radius:9px!important;background:var(--accent)!important;color:#fff!important;font-size:.78rem!important;font-weight:900!important;text-decoration:none!important;cursor:pointer!important;list-style:none!important;box-shadow:none!important}
.sfx-v16-cta::-webkit-details-marker{display:none}.sfx-v16-cta span{margin-left:auto;font-size:1rem}
.sfx-v16-details{margin-top:auto}.sfx-v16-details[open] .sfx-v16-cta{border-radius:9px 9px 0 0!important}.sfx-v16-details[open] .sfx-v16-cta span{transform:rotate(90deg)}
.sfx-v16-detail-content{margin-top:0;padding:13px;border:1px solid #e1e8f0;border-top:0;border-radius:0 0 10px 10px;background:#fbfdff}
.sfx-v16-full-desc{margin-bottom:12px;color:#52667f;font-size:.77rem;line-height:1.5}.sfx-v16-full-desc p:last-child{margin-bottom:0}
.sfx-v16-register-title{margin:8px 0;color:#173b67;font-size:.85rem;font-weight:900}.sfx-v16-notice{padding:11px;border-radius:8px;background:#eef5ff;color:#385a84;font-size:.75rem;line-height:1.45}
.sfx-v16-detail-content .sfx-v1-form{grid-template-columns:1fr!important;padding:10px 0 0!important;gap:8px!important}.sfx-v16-detail-content .sfx-v1-field.full,.sfx-v16-detail-content .sfx-v1-form .full{grid-column:1!important}.sfx-v16-detail-content .sfx-v1-primary{width:100%}

.sfx-v16-noresult{margin:20px 0;padding:30px;border:1px dashed #cbd8e7;border-radius:14px;text-align:center;color:#5c6f86;background:#fafcff}.sfx-v16-noresult strong{display:block;margin-bottom:10px;color:#294767}.sfx-v16-noresult button{padding:8px 12px;border:1px solid #c5d3e4;border-radius:8px;background:#fff;color:#28508a;font-weight:800;cursor:pointer}
.sfx-v16-info{display:flex;justify-content:space-between;gap:20px;margin-top:14px;padding:11px 14px;border:1px solid #dfe8f2;border-radius:12px;background:#f5f9fd;color:#60748b;font-size:.72rem}.sfx-v16-info span:first-child{color:#4c6581}

@container sfxapp (max-width:1120px){.sfx-v16-toolbar{grid-template-columns:1fr 1fr 1fr}.sfx-v16-search{grid-column:1/-1}.sfx-v16-reset{justify-self:end}.sfx-v16-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@container sfxapp (max-width:850px){.sfx-v16-hero{grid-template-columns:1fr}.sfx-v16-hero-image{height:190px;min-height:190px;background-position:center 30%}.sfx-v16-hero-copy{padding:28px}.sfx-v16-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.sfx-v16-toolbar{grid-template-columns:1fr 1fr}.sfx-v16-search{grid-column:1/-1}.sfx-v16-info{flex-direction:column;gap:5px}}
@container sfxapp (max-width:560px){.sfx-v1-app.is-public,.sfx-v1-app.is-admin{width:calc(100vw - 20px)!important}.sfx-v16-hero-copy{padding:22px}.sfx-v16-hero h2{font-size:2rem!important}.sfx-v16-benefits{display:grid;grid-template-columns:1fr 1fr;gap:8px}.sfx-v16-toolbar{grid-template-columns:1fr}.sfx-v16-search{grid-column:1}.sfx-v16-reset{justify-self:stretch}.sfx-v16-grid{grid-template-columns:1fr}.sfx-v16-card-media{height:160px}.sfx-v16-desc{min-height:0}}

/* v1.7 — page Activités en mode application : masque l'en-tête et le pied de page du thème */
body.sfx-activities-app-page > header,
body.sfx-activities-app-page > footer,
body.sfx-activities-app-page .wp-site-blocks > header.wp-block-template-part,
body.sfx-activities-app-page .wp-site-blocks > footer.wp-block-template-part,
body.sfx-activities-app-page header.wp-block-template-part,
body.sfx-activities-app-page footer.wp-block-template-part,
body.sfx-activities-app-page #masthead,
body.sfx-activities-app-page #colophon,
body.sfx-activities-app-page .site-header,
body.sfx-activities-app-page .site-footer {
  display:none!important;
}
body.sfx-activities-app-page .wp-site-blocks,
body.sfx-activities-app-page main,
body.sfx-activities-app-page .wp-block-post-content {
  margin-top:0!important;
  margin-bottom:0!important;
  padding-top:0!important;
}


/* v1.8 — correction des bulles/badges dont le texte pouvait être coupé */
.sfx-v1-app .sfx-v1-availability,
.sfx-v1-app .sfx-v1-period,
.sfx-v1-app .sfx-v1-status,
.sfx-v1-app [class*="badge"],
.sfx-v1-app [class*="pill"],
.sfx-v1-app [class*="chip"]{
  max-width:100%;
  width:auto;
  min-width:0;
  height:auto !important;
  min-height:0;
  padding-top:6px;
  padding-bottom:6px;
  line-height:1.25;
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  word-break:normal;
  overflow-wrap:anywhere;
  text-align:center;
}

.sfx-v1-activity-top{
  min-width:0;
}

.sfx-v1-activity-top > div{
  min-width:0;
  flex:1 1 auto;
}

.sfx-v1-availability{
  flex:0 1 auto;
  align-self:flex-start;
}

@container sfxapp (max-width:680px){
  .sfx-v1-activity-top{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  .sfx-v1-availability{
    max-width:100%;
  }
}


/* v1.9 — suppression des doublons dans les vignettes d'activité
   On garde uniquement le badge principal de catégorie et le badge principal de places. */
.sfx-v1-app .sfx-v1-card-image .sfx-v1-category + .sfx-v1-category,
.sfx-v1-app .sfx-v1-card-image .sfx-v1-places + .sfx-v1-places,
.sfx-v1-app .sfx-v1-card-image [class*="category"] ~ [class*="category"],
.sfx-v1-app .sfx-v1-card-image [class*="places"] ~ [class*="places"],
.sfx-v1-app .sfx-v1-card-image [class*="badge-secondary"],
.sfx-v1-app .sfx-v1-card-image [class*="badge-copy"],
.sfx-v1-app .sfx-v1-card-image [class*="duplicate"]{
  display:none !important;
}

/* Certaines anciennes règles pouvaient réinjecter le texte via pseudo-éléments. */
.sfx-v1-app .sfx-v1-card-image [class*="category"]::after,
.sfx-v1-app .sfx-v1-card-image [class*="places"]::after{
  content:none !important;
  display:none !important;
}

/* Ne garder qu'une seule ligne de badges sur l'image. */
.sfx-v1-app .sfx-v1-card-image .sfx-v1-card-badges{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:8px;
  width:100%;
}
.sfx-v1-app .sfx-v1-card-image .sfx-v1-card-badges > *{
  margin:0 !important;
}


/* v1.10 — entête : suppression définitive de la bulle de texte décorative */
.sfx-v1-app .sfx-v1-hero-bubble,
.sfx-v1-app .sfx-v1-hero-image-bubble,
.sfx-v1-app .sfx-v1-hero [class*="bubble"],
.sfx-v1-app .sfx-v1-hero-media [class*="bubble"]{
  display:none !important;
}

/* Masque également un éventuel pseudo-élément utilisé pour la bulle. */
.sfx-v1-app .sfx-v1-hero-media::before,
.sfx-v1-app .sfx-v1-hero-media::after{
  content:none !important;
}


/* v1.14 — bouton Retour en bas de page */
.sfx-v1-back-home{
  display:flex;
  justify-content:center;
  width:100%;
  margin:28px 0 8px;
}
.sfx-v1-back-home-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  padding:11px 22px;
  border:1px solid #d7e0ec;
  border-radius:10px;
  background:#fff;
  color:#173b70 !important;
  font-size:.86rem;
  font-weight:800;
  line-height:1.2;
  text-decoration:none !important;
  box-shadow:0 4px 12px rgba(15,23,42,.07);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.sfx-v1-back-home-btn:hover,
.sfx-v1-back-home-btn:focus{
  background:#f4f8ff;
  transform:translateY(-1px);
  box-shadow:0 7px 16px rgba(15,23,42,.10);
}


/* =========================================================
 * v1.15 — intégration dans une page WordPress /extra-scolaire/
 * Le module respecte désormais la largeur du thème et reste
 * fluide sur desktop, tablette et mobile.
 * ========================================================= */
.sfx-v1-app{
  box-sizing:border-box;
  width:100% !important;
  max-width:1440px !important;
  min-width:0 !important;
  margin:0 auto !important;
  padding:clamp(12px,2vw,28px) !important;
  overflow:visible !important;
  container-type:inline-size;
  container-name:sfxapp;
}
.sfx-v1-app *,
.sfx-v1-app *::before,
.sfx-v1-app *::after{box-sizing:border-box}

.sfx-v1-app img{
  max-width:100%;
  height:auto;
}

/* Évite les largeurs fixes héritées des anciennes versions. */
.sfx-v1-app .sfx-v1-hero,
.sfx-v1-app .sfx-v1-toolbar,
.sfx-v1-app .sfx-v1-filters,
.sfx-v1-app .sfx-v1-grid,
.sfx-v1-app .sfx-v1-admin,
.sfx-v1-app .sfx-v1-admin-panel{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
}

/* Cartes : 4 colonnes uniquement quand l'espace réel le permet. */
.sfx-v1-app .sfx-v1-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:clamp(14px,1.5vw,22px) !important;
}
.sfx-v1-app .sfx-v1-card{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
}

/* Le contenu textuel ne déborde jamais du bloc WordPress. */
.sfx-v1-app .sfx-v1-card *,
.sfx-v1-app .sfx-v1-admin *{
  min-width:0;
  overflow-wrap:break-word;
}

/* Barre de filtres fluide. */
.sfx-v1-app .sfx-v1-filters,
.sfx-v1-app .sfx-v1-toolbar{
  gap:10px;
}
.sfx-v1-app input,
.sfx-v1-app select,
.sfx-v1-app textarea,
.sfx-v1-app button{
  max-width:100%;
}

/* Adaptation selon la largeur RÉELLE du bloc dans le thème. */
@container sfxapp (max-width:1180px){
  .sfx-v1-app .sfx-v1-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}
@container sfxapp (max-width:900px){
  .sfx-v1-app .sfx-v1-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .sfx-v1-app .sfx-v1-hero{
    border-radius:18px;
  }
}
@container sfxapp (max-width:620px){
  .sfx-v1-app{
    padding:10px !important;
  }
  .sfx-v1-app .sfx-v1-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }
  .sfx-v1-app .sfx-v1-filters,
  .sfx-v1-app .sfx-v1-toolbar{
    display:grid !important;
    grid-template-columns:1fr !important;
  }
  .sfx-v1-app .sfx-v1-filters > *,
  .sfx-v1-app .sfx-v1-toolbar > *{
    width:100% !important;
  }
  .sfx-v1-app .sfx-v1-back-home-btn{
    width:100%;
  }
}

/* Compatibilité avec les conteneurs Gutenberg/thèmes qui limitent le contenu. */
.entry-content .sfx-v1-app,
.wp-block-post-content .sfx-v1-app,
main .sfx-v1-app{
  margin-left:auto !important;
  margin-right:auto !important;
}


/* =========================================================
 * v1.16 — CORRECTION SFXVEDRIN.BE /extra-scolaire/
 * La page du site utilise une colonne centrale + sidebar.
 * On annule explicitement l'ancien mode "plein écran".
 * ========================================================= */

.sfx-v1-app.is-public,
.sfx-v1-app.is-admin{
  width:100% !important;
  max-width:100% !important;
  margin-left:0 !important;
  margin-right:0 !important;
  transform:none !important;
  left:auto !important;
  right:auto !important;
  padding:14px 0 24px !important;
  overflow:visible !important;
}

/* Namespace réellement utilisé par le frontend v1.6+ */
.sfx-v1-app .sfx-v16-hero,
.sfx-v1-app .sfx-v16-toolbar,
.sfx-v1-app .sfx-v16-grid,
.sfx-v1-app .sfx-v16-card,
.sfx-v1-app .sfx-v16-details{
  min-width:0 !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

.sfx-v1-app .sfx-v16-hero{
  width:100% !important;
  display:grid !important;
  grid-template-columns:minmax(0,1.08fr) minmax(260px,.92fr) !important;
  overflow:hidden !important;
}

.sfx-v1-app .sfx-v16-hero-copy,
.sfx-v1-app .sfx-v16-hero-image{
  min-width:0 !important;
}

.sfx-v1-app .sfx-v16-toolbar{
  width:100% !important;
  display:grid !important;
  grid-template-columns:minmax(180px,1.4fr) repeat(3,minmax(125px,1fr)) auto !important;
  gap:10px !important;
}

.sfx-v1-app .sfx-v16-toolbar > *{
  min-width:0 !important;
  width:100% !important;
  max-width:100% !important;
}

.sfx-v1-app .sfx-v16-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
}

.sfx-v1-app .sfx-v16-card{
  width:100% !important;
  margin:0 !important;
}

/* Le thème de sfxvedrin.be laisse environ 800px à la colonne de contenu.
   À cette largeur, 2 cartes sont plus lisibles. */
@media (max-width:1250px){
  .sfx-v1-app .sfx-v16-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
  .sfx-v1-app .sfx-v16-toolbar{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:850px){
  .sfx-v1-app .sfx-v16-hero{
    grid-template-columns:1fr !important;
  }
  .sfx-v1-app .sfx-v16-hero-image{
    min-height:220px !important;
  }
  .sfx-v1-app .sfx-v16-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:600px){
  .sfx-v1-app .sfx-v16-toolbar{
    grid-template-columns:1fr !important;
  }
}

/* Ne masque plus le header/footer du thème sur la page intégrée. */
body.sfx-activities-app-page > header,
body.sfx-activities-app-page > footer,
body.sfx-activities-app-page .wp-site-blocks > header.wp-block-template-part,
body.sfx-activities-app-page .wp-site-blocks > footer.wp-block-template-part,
body.sfx-activities-app-page header.wp-block-template-part,
body.sfx-activities-app-page footer.wp-block-template-part,
body.sfx-activities-app-page #masthead,
body.sfx-activities-app-page #colophon,
body.sfx-activities-app-page .site-header,
body.sfx-activities-app-page .site-footer{
  display:revert !important;
}


/* v1.17 — dates d'inscription visibles sur chaque activité */
.sfx-v16-registration-dates{
  display:flex;
  align-items:center;
  gap:9px;
  margin:2px 0 12px;
  padding:9px 10px;
  border-radius:11px;
  background:#f6f9ff;
  border:1px solid #dfe8f7;
  color:#173b70;
  line-height:1.25;
}
.sfx-v16-registration-icon{
  flex:0 0 auto;
  font-size:1rem;
}
.sfx-v16-registration-dates > div{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.sfx-v16-registration-dates strong{
  font-size:.78rem;
  font-weight:900;
  color:#123064;
}
.sfx-v16-registration-dates span:not(.sfx-v16-registration-icon){
  margin-top:2px;
  font-size:.76rem;
  font-weight:700;
  color:#52657f;
}
