:root{
  --bg:#0b0f1a;
  --card:#0f172a;
  --card-2:#0b1222;
  --text:#e6eaff;
  --muted:#a7b0c8;
  --accent:#3b82f6;
  --accent-2:#60a5fa;
  --pop:#22d3ee;
  --border:#1f2a44;
  --shadow:0 20px 50px rgba(0,0,0,.35);
  --radius:22px;
}

/* =========================
   LifeHeberg Offers (scoped)
   ========================= */
.lh-offers{position:relative;padding:40px 0}
.lh-offers .lo-container{max-width:1180px;margin:0 auto;padding:0 20px}

.lh-offers h1{
  font-size:44px;line-height:1.1;margin:10px 0 8px;text-align:center;
  font-weight:800;letter-spacing:.2px;color:var(--text);
}
.lh-offers .sub{color:var(--muted);text-align:center;font-weight:500;margin-bottom:28px}

.lh-offers .periods{display:flex;gap:12px;justify-content:center;margin-bottom:38px;flex-wrap:wrap}
.lh-offers .pill{border:1px solid var(--border);background:rgba(255,255,255,.02);color:var(--text);
  padding:10px 16px;border-radius:14px;cursor:pointer;font-weight:600;transition:.2s all;box-shadow:inset 0 0 0 1px rgba(255,255,255,.02)}
.lh-offers .pill:hover{transform:translateY(-1px);border-color:#2a375f}
.lh-offers .pill.active{background:linear-gradient(180deg, rgba(59,130,246,.18), rgba(59,130,246,.12));border-color:#33508e;box-shadow:0 6px 18px rgba(59,130,246,.25)}

.lh-offers .grid{display:grid;grid-template-columns:repeat(12,1fr);gap:22px}

/* Cards */
.lh-offers .card{grid-column:span 4;background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)), var(--card);
  border:1px solid var(--border);border-radius:var(--radius);padding:26px 22px 22px;box-shadow:var(--shadow);position:relative;overflow:hidden;transition:.2s border-color ease}
.lh-offers .card:hover{border-color:#2a3b64}
.lh-offers .title{font-size:28px;margin:0 0 4px;font-weight:800;letter-spacing:.3px;color:var(--text)}
.lh-offers .price{margin:6px 0 14px;color:var(--muted);font-weight:600}
.lh-offers .price strong{color:var(--text);font-size:20px}
.lh-offers .features{display:grid;gap:12px;margin:20px 0 24px;padding:0;list-style:none}
.lh-offers .features li{display:flex;align-items:center;gap:12px;color:var(--text);font-weight:500}
.lh-offers .features li .feat-icon{
  width:20px;text-align:center;flex-shrink:0;
  color:var(--accent-2);font-size:15px;opacity:.95;
}
.lh-offers .muted{color:var(--muted)}

.lh-offers .cta{display:flex;justify-content:center}
.lh-offers .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  width:100%;background:linear-gradient(180deg, var(--accent), var(--accent-2));color:#0b1020;
  border:none;border-radius:16px;padding:14px 18px;font-weight:800;cursor:pointer;transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 10px 24px rgba(59,130,246,.35);text-decoration:none}
.lh-offers .btn:hover{transform:translateY(-1px);box-shadow:0 14px 32px rgba(59,130,246,.45)}
.lh-offers .btn:active{transform:translateY(0)}

/* Popular variant */
.lh-offers .card.popular{
  background: radial-gradient(800px 200px at 50% -40%, rgba(34,211,238,.18), transparent 70%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)), var(--card-2);
  border-color:#226a9a;
  box-shadow:0 25px 70px rgba(34,211,238,.25), var(--shadow);
}

/* Ligne titre + badge côte à côte */
.lh-offers .card.popular .title-row {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

/* Badge version intégrée (remplace l'absolu) */
.lh-offers .card.popular .badge {
  position: static !important;
  top:auto !important; left:auto !important;
  background: linear-gradient(180deg, #67e8f9, #22d3ee);
  color: #00313a;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 14px rgba(34, 211, 238, 0.4);
}

/* Ancien badge (haut) masqué si présent pour éviter doublon */
.lh-offers .card.popular > .badge{ display:none; }

.lh-offers .popular .btn,
.lh-offers .lh-offer-card.popular .btn {
  background: linear-gradient(180deg, #22d3ee, #06b6d4);
  box-shadow: 0 10px 24px rgba(6,182,212,.45);
}

/* Fourth full-width custom card */
.lh-offers .card.custom{
  grid-column:1 / -1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:42px 26px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
}
.lh-offers .custom .title{font-size:34px;letter-spacing:.4px}
.lh-offers .custom .subtitle{margin-top:6px;color:var(--muted);font-weight:600;font-size:18px}
.lh-offers .custom .btn{max-width:380px;margin-top:18px}

/* Divider */
.lh-offers .divider{
  height:1px;
  background:linear-gradient(90deg, transparent, #223058, transparent);
  margin:10px 0 14px;
  opacity:.7;
}

/* Responsive */
@media (max-width: 1024px){
  .lh-offers .card{grid-column:span 6}
  .lh-offers .card.custom{grid-column:1 / -1}
}
@media (max-width: 680px){
  .lh-offers .grid{gap:16px}
  .lh-offers .card{grid-column:span 12}
}

.lh-offers .grid.grid-2 .card{grid-column:span 6}
@media (max-width: 680px){
  .lh-offers .grid.grid-2 .card{grid-column:span 12}
}

.lh-hero-block{
  background:
    radial-gradient(900px 420px at 20% -20%, rgba(59,130,246,.22), transparent 55%),
    radial-gradient(700px 360px at 90% 0%, rgba(34,211,238,.14), transparent 60%),
    linear-gradient(180deg, #0f172a, #0b1222);
  padding:150px 0 48px;
  border-bottom:1px solid rgba(255,255,255,.05);
}

[data-layout="frame"] .box-container .lh-hero-block{
  padding-top:170px;
}

@media (max-width:768px){
  .lh-hero-block{
    padding-top:120px;
    padding-bottom:40px;
  }
}
.lh-hero-block__inner{max-width:1180px;margin:0 auto;padding:0 20px}
.lh-hero-block__content{text-align:center;padding:16px 0 36px}
.lh-hero-block .lh-infos{
  padding:0;background:none;border:none;
}
.lh-hero-block .lh-infos__container{padding:0}
.lh-page-hero h1,
.lh-hero-block h1{
  margin:0 0 10px;font-size:46px;line-height:1.1;font-weight:800;color:var(--text);letter-spacing:.2px;
}
.lh-page-hero p,
.lh-hero-block p{
  margin:0 auto;max-width:640px;color:var(--muted);font-size:18px;line-height:1.5;font-weight:500;
}
.lh-page-hero .from-price,
.lh-hero-block .from-price{
  display:inline-block;margin-top:18px;padding:8px 14px;border-radius:999px;
  background:rgba(59,130,246,.12);border:1px solid rgba(59,130,246,.35);
  color:#bfdbfe;font-weight:700;font-size:14px;
}
@media (max-width:680px){
  .lh-page-hero h1,
  .lh-hero-block h1{font-size:34px}
  .lh-page-hero p,
  .lh-hero-block p{font-size:16px}
}

[data-background] .box-container .lh-offers-section,
.box-container .lh-offers-section{
  background:linear-gradient(180deg, #0b1222 0%, #0b0f1a 100%) !important;
  padding:72px 0 80px;
}

/* Cards — lh-offer-card évite le conflit avec Bootstrap .card */
.lh-offers .lh-offer-card{grid-column:span 4;background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)), var(--card);
  border:1px solid var(--border);border-radius:var(--radius);padding:26px 22px 22px;box-shadow:var(--shadow);position:relative;overflow:hidden;transition:.2s border-color ease}
.lh-offers .lh-offer-card:hover{border-color:#2a3b64}
.lh-offers .grid.grid-2 .lh-offer-card{grid-column:span 6}
@media (max-width: 1024px){
  .lh-offers .lh-offer-card{grid-column:span 6}
}
@media (max-width: 680px){
  .lh-offers .grid.grid-2 .lh-offer-card,
  .lh-offers .lh-offer-card{grid-column:span 12}
}
.lh-offers .lh-offer-card.popular{
  background: radial-gradient(800px 200px at 50% -40%, rgba(34,211,238,.18), transparent 70%),
              linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03)), var(--card-2);
  border-color:#226a9a;
  box-shadow:0 25px 70px rgba(34,211,238,.25), var(--shadow);
}
.lh-offers .lh-offer-card.popular .title-row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.lh-offers .lh-offer-card.popular .badge{
  position:static!important;background:linear-gradient(180deg, #67e8f9, #22d3ee);color:#00313a;
  padding:6px 10px;border-radius:999px;font-weight:900;font-size:12px;letter-spacing:.3px;
  box-shadow:0 6px 14px rgba(34,211,238,.4);
}
.lh-offers .lh-offer-card.custom{
  grid-column:1 / -1;display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:42px 26px;background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)), var(--card);
}

.lh-compare{
  max-width:1180px;margin:48px auto 0;padding:0 20px;
}
.lh-compare h2{
  text-align:center;font-size:28px;font-weight:800;color:var(--text);margin:0 0 24px;
}
.lh-compare__table{
  width:100%;border-collapse:separate;border-spacing:0;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)), var(--card);
  border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);
}
.lh-compare__table th,
.lh-compare__table td{
  padding:14px 18px;border-bottom:1px solid var(--border);color:var(--text);font-size:15px;
}
.lh-compare__table th{
  background:rgba(255,255,255,.04);font-weight:800;text-align:center;
}
.lh-compare__table th:first-child,
.lh-compare__table td:first-child{
  text-align:left;color:var(--muted);font-weight:600;width:34%;
}
.lh-compare__table tr:last-child td{border-bottom:none}
.lh-compare__table .check{color:#34d399;font-weight:700}
.lh-compare__note{
  display:block;margin-top:28px;text-align:center;color:var(--muted);font-size:13px;
}

/* =========================
   Info blocks (scoped, no Bootstrap deps)
   ========================= */
.lh-infos{
  background: linear-gradient(180deg, #0f172a, #0b1222);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.lh-infos__container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Force la grille même si des styles globaux essayent de l'écraser */
.lh-infos__grid{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lh-infos__card{
  display: flex !important; /* au cas où un style met block */
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.lh-infos__card:hover{
  transform: translateY(-2px);
  border-color: rgba(59,130,246,.35);
  background: rgba(59,130,246,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

.lh-infos__icon{
  filter: brightness(0) invert(1);
  opacity: .95;
  flex: 0 0 auto;
  width:52px; height:52px;
}
.lh-infos__title{
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #e6eaff;
}
.lh-infos__desc{
  margin: 4px 0 0;
  font-size: 15px;
  color: #a7b0c8;
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 1024px){
  .lh-infos__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .lh-infos__grid{ grid-template-columns: 1fr; }
  .lh-infos__card{ align-items: flex-start; }
}
/* =========================
   LifeHeberg - Bloc d'infos (Livraison / Protection / Technique)
   Compatible avec le HTML .help-container existant
   ========================= */
.top-header.overlay.item13 {
  /* Conserve l'image Minecraft (item13) du thème — padding seulement */
  padding: 150px 0 60px;
}

[data-layout="frame"] .box-container .top-header.overlay.item13 {
  padding-top: 170px;
}

.top-header.overlay.item13 .lh-mc-hero {
  padding-bottom: 40px;
  text-align: center;
}

.top-header.overlay.item13 .lh-mc-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.top-header.overlay.item13 .lh-mc-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: #eaeaea;
  font-size: 18px;
  line-height: 1.5;
}

.top-header.overlay.item13 .lh-mc-hero .from-price {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fdd700;
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-header.overlay.item13 {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .top-header.overlay.item13 .lh-mc-hero h1 {
    font-size: 32px;
  }

  .top-header.overlay.item13 .lh-mc-hero p {
    font-size: 16px;
  }
}

/* Thème LifeHeberg — offres sur fond clair */
.lh-offers.lh-offers--lh-theme h2.section-heading {
  font-size: 36px;
  font-weight: 700;
}

.lh-offers.lh-offers--lh-theme .sub {
  color: inherit;
  margin-bottom: 32px;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card {
  background: #fff;
  border: 1px solid #ebeff5;
  box-shadow: 0 5px 15px rgba(110, 110, 110, .1);
}

.lh-offers.lh-offers--lh-theme .lh-offer-card:hover {
  border-color: #ee5586;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .title {
  color: #ee5586;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .price {
  color: #4c4a4a;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .price strong {
  color: #212122;
  font-size: 22px;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .features li {
  color: #414142;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .features li.muted {
  color: #6c757d;
}

.lh-offers.lh-offers--lh-theme .lh-offer-card.popular {
  background: #fff;
  border: 2px solid #ee5586;
  box-shadow: 0 8px 28px rgba(238, 85, 134, .18);
}

.lh-offers.lh-offers--lh-theme .lh-offer-card.popular .badge {
  background: linear-gradient(to right, #a5215e, #ee5586);
  color: #fff;
  box-shadow: 0 4px 12px rgba(238, 85, 134, .35);
}

.lh-offers.lh-offers--lh-theme .lh-offer-card .divider {
  background: linear-gradient(90deg, transparent, #dee2e6, transparent);
  opacity: 1;
}

.lh-offers.lh-offers--lh-theme .lh-compare h2 {
  color: inherit;
  font-size: 28px;
  font-weight: 700;
}

.lh-offers.lh-offers--lh-theme .lh-compare__table {
  background: #fff;
  border: 1px solid #ebeff5;
  box-shadow: 0 5px 15px rgba(110, 110, 110, .08);
}

.lh-offers.lh-offers--lh-theme .lh-compare__table th,
.lh-offers.lh-offers--lh-theme .lh-compare__table td {
  color: #414142;
  border-bottom-color: #ebeff5;
}

.lh-offers.lh-offers--lh-theme .lh-compare__table th {
  background: #f6f6f6;
  color: #ee5586;
}

.lh-offers.lh-offers--lh-theme .lh-compare__table th:first-child,
.lh-offers.lh-offers--lh-theme .lh-compare__table td:first-child {
  color: #4c4a4a;
}

.lh-offers.lh-offers--lh-theme .lh-compare__table .check {
  color: #28a745;
}

.lh-offers.lh-offers--lh-theme .lh-compare__note {
  color: #6c757d;
}

.top-header.overlay.item13 .help-container {
  background: rgba(0, 0, 0, 0.5) !important;
  border: none;
  border-radius: 8px;
  box-shadow: none;
}

.top-header.overlay.item13 .help-container:hover {
  transform: none;
  background: rgba(0, 0, 0, 0.6) !important;
}

.top-header.overlay.item13 .help-item.dark {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e6eaff;
  text-decoration: none;
}

.top-header.overlay.item13 .help-item.dark .img {
  flex: 0 0 auto;
}

.top-header.overlay.item13 .help-item.dark .img .ico {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.top-header.overlay.item13 .help-item.dark .inform {
  flex: 1;
}

.top-header.overlay.item13 .help-item.dark .inform .title {
  color: #e6eaff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}

.top-header.overlay.item13 .help-item.dark .inform .description {
  color: #a7b0c8;
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .top-header.overlay.item13 .help-item.dark {
    flex-direction: column;
    text-align: center;
  }

  .top-header.overlay.item13 .help-item.dark .img {
    margin-bottom: 10px;
  }
}
/* =========================
   LifeHeberg - Nouvelle section infos (Livraison / Protection / Technique)
   ========================= */
   .lh-infos {
    background: linear-gradient(180deg, #0f172a, #0b1222);
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .lh-infos__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .lh-infos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
  }
  
  .lh-infos__card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    transition: all 0.2s ease;
  }
  
  .lh-infos__card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  
  .lh-infos__icon {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
  
  .lh-infos__title {
    margin: 0;
    color: #e6eaff;
    font-weight: 800;
    font-size: 20px;
  }
  
  .lh-infos__desc {
    margin: 4px 0 0;
    color: #a7b0c8;
    font-size: 15px;
    line-height: 1.45;
  }
  
  @media (max-width: 768px) {
    .lh-infos__card {
      flex-direction: column;
      text-align: center;
    }
  }

/* =========================
   Minecraft — sections basses (thème sombre)
   Priorité sur [data-background="light"] du thème LifeHeberg
   ========================= */
[data-background] .box-container .lh-mc-panel,
.box-container .lh-mc-panel{
  background:
    radial-gradient(700px 300px at 15% 30%, rgba(59,130,246,.14), transparent 55%),
    radial-gradient(600px 280px at 85% 60%, rgba(34,211,238,.1), transparent 60%),
    linear-gradient(180deg, #0b0f1a 0%, #0f172a 50%, #0b1222 100%) !important;
  padding:72px 0 80px;
  border-top:1px solid rgba(255,255,255,.05);
}
[data-background] .box-container .lh-mc-panel .section-heading,
[data-background] .box-container .lh-mc-panel .mergecolor,
.box-container .lh-mc-panel .section-heading,
.box-container .lh-mc-panel .mergecolor{color:var(--text)!important;font-weight:800}
[data-background] .box-container .lh-mc-panel .section-subheading,
.box-container .lh-mc-panel .section-subheading{color:var(--muted)!important;font-weight:500}
[data-background] .box-container .lh-mc-panel .agpanel h5.mergecolor,
.box-container .lh-mc-panel .agpanel h5.mergecolor{color:var(--text)!important;font-weight:700}
.box-container .lh-mc-panel .agpanel .svg{filter:brightness(0) invert(1);opacity:.92}
.box-container .lh-mc-panel .carousel-inner img{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.box-container .lh-mc-panel .carousel-control-prev,
.box-container .lh-mc-panel .carousel-control-next{
  width:44px;height:44px;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.08);border:1px solid var(--border);
  border-radius:50%;opacity:1;
}
.box-container .lh-mc-panel .carousel-control-prev{left:-12px}
.box-container .lh-mc-panel .carousel-control-next{right:-12px}
.box-container .lh-mc-panel .carousel-control-prev-icon,
.box-container .lh-mc-panel .carousel-control-next-icon{
  filter:invert(1) brightness(1.2);width:20px;height:20px;
}
.box-container .lh-mc-btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg, var(--accent), var(--accent-2));
  color:#0b1020!important;border:none;border-radius:16px;
  padding:14px 28px;font-weight:800;text-decoration:none;
  box-shadow:0 10px 24px rgba(59,130,246,.35);
  transition:transform .15s ease, box-shadow .15s ease;
}
.box-container .lh-mc-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(59,130,246,.45);
  color:#0b1020!important;
}

[data-background] .box-container .lh-mc-support,
.box-container .lh-mc-support{
  background:linear-gradient(180deg, #0b1222 0%, #0b0f1a 100%) !important;
  padding-bottom:80px!important;
  border-top:1px solid rgba(255,255,255,.04);
}
[data-background] .box-container .lh-mc-support .help-container,
.box-container .lh-mc-support .help-container{
  background:rgba(255,255,255,.03)!important;
  border:1px solid rgba(255,255,255,.08)!important;
  border-radius:18px!important;
  box-shadow:0 10px 26px rgba(0,0,0,.35)!important;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
[data-background] .box-container .lh-mc-support .help-container:hover,
.box-container .lh-mc-support .help-container:hover{
  transform:translateY(-3px);
  border-color:rgba(59,130,246,.35)!important;
  background:rgba(59,130,246,.06)!important;
  box-shadow:0 14px 34px rgba(0,0,0,.45)!important;
}
.box-container .lh-mc-support .help-item:before{background:var(--border)!important}
[data-background] .box-container .lh-mc-support .help-item .inform .title,
[data-background] .box-container .lh-mc-support .title.mergecolor,
.box-container .lh-mc-support .help-item .inform .title,
.box-container .lh-mc-support .title.mergecolor{color:var(--text)!important}
[data-background] .box-container .lh-mc-support .help-item .inform .description,
[data-background] .box-container .lh-mc-support .description.seccolor,
.box-container .lh-mc-support .help-item .inform .description,
.box-container .lh-mc-support .description.seccolor{color:var(--muted)!important}
.box-container .lh-mc-support .help-item .ico{filter:brightness(0) invert(1);opacity:.9}

@media (max-width:768px){
  .box-container .lh-mc-panel .carousel-control-prev{left:4px}
  .box-container .lh-mc-panel .carousel-control-next{right:4px}
}

/* offres.css v4 — vérifier en prod : ce commentaire doit apparaître en bas du fichier */
  