/* =========================================================
   ile-de-france.css — Page Déménagement Île-de-France
   Hexagone Déménagement
   ========================================================= */

body.idf-page {
  overflow-x: hidden;
  background: var(--color-bg);
}

.idf-page main {
  overflow: hidden;
}

.idf-hero > .container,
.idf-section > .container,
.idf-trust-strip > .container,
.idf-faq-section > .container,
.idf-final-cta > .container {
  width: min(calc(100% - clamp(2rem, 5vw, 4rem)), var(--container-max));
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--color-navy-850);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--color-red-600);
}

/* ─── HERO ─── */
.idf-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 76% 10%, rgba(225, 38, 28, 0.08), transparent 20rem),
    linear-gradient(135deg, #f3f6fa 0%, #edf2f9 54%, #ffffff 100%);
}

.idf-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8rem;
  background: linear-gradient(180deg, rgba(11, 21, 51, 0.04), transparent);
  pointer-events: none;
}

.idf-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.86fr);
  gap: 3.5rem;
  align-items: start;
}

.idf-hero-copy {
  min-width: 0;
  padding-top: 1rem;
}

.idf-hero-copy h1 {
  max-width: 22ch;
  margin: 0.85rem 0 1rem;
  color: var(--color-navy-900);
  font-size: 3.4rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.idf-hero-subtitle {
  max-width: 46rem;
  margin: 0 0 0.85rem;
  color: var(--color-navy-900);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.5;
}

.idf-hero-copy > p:not(.eyebrow):not(.idf-hero-subtitle) {
  max-width: 44rem;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.idf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.idf-hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 42rem;
  margin-top: 2rem;
  list-style: none;
}

.idf-hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-navy-850);
  font-weight: 700;
  font-size: 0.93rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.idf-hero-proof svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--color-red-600);
}

/* ─── HERO PANEL (image + formulaire) ─── */
.idf-hero-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 28px;
  background: var(--color-white);
  box-shadow: 0 24px 55px rgba(11, 21, 51, 0.12);
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.idf-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 13rem;
  background: var(--color-navy-900);
}

.idf-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(11, 21, 51, 0.42));
  pointer-events: none;
}

.idf-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 13rem;
  object-fit: cover;
  object-position: center;
}

/* ─── LEAD FORM ─── */
.idf-lead-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
}

.idf-form-head {
  display: grid;
  gap: 0.2rem;
}

.idf-form-head strong {
  color: var(--color-navy-900);
  font-size: 1.15rem;
}

.idf-form-head span {
  color: var(--color-muted);
  font-size: 0.89rem;
  line-height: 1.5;
}

.idf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.idf-field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.idf-field-wide {
  grid-column: 1 / -1;
}

.idf-field label {
  color: var(--color-navy-850);
  font-size: 0.81rem;
  font-weight: 800;
}

.idf-field input,
.idf-field select,
.idf-field textarea {
  width: 100%;
  min-height: 2.9rem;
  border: 1px solid rgba(11, 21, 51, 0.12);
  border-radius: 14px;
  background: #f9fbfe;
  color: var(--color-text);
  padding: 0.72rem 0.88rem;
  font: inherit;
  font-size: 0.95rem;
  outline: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.idf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235E6A7D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}

.idf-field textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.idf-field input:focus,
.idf-field select:focus,
.idf-field textarea:focus {
  border-color: rgba(225, 38, 28, 0.46);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(225, 38, 28, 0.10);
}

.idf-field small,
.idf-form-status {
  min-height: 1rem;
  color: var(--color-red-600);
  font-size: 0.77rem;
  font-weight: 700;
}

.idf-field.is-error input,
.idf-field.is-error select,
.idf-field.is-error textarea {
  border-color: rgba(225, 38, 28, 0.55);
}

.idf-form-status {
  margin: 0;
}

.idf-form-status.is-success {
  color: #047857;
}

.idf-form-status.is-loading {
  color: var(--color-muted);
}

.idf-form-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.idf-form-privacy {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

/* ─── TRUST STRIP ─── */
.idf-trust-strip {
  padding: 1.35rem 0;
  background: var(--color-white);
  border-block: 1px solid rgba(11, 21, 51, 0.06);
}

.idf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.idf-trust-grid article {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: #f6f8fb;
  border: 1px solid rgba(11, 21, 51, 0.05);
}

.idf-trust-grid strong {
  color: var(--color-navy-900);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.idf-trust-grid span {
  color: var(--color-muted);
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.55;
}

/* ─── SECTIONS ─── */
.idf-section {
  padding: 5.5rem 0;
}

.idf-soft-section {
  background: #f3f6fa;
}

.idf-dark-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(225, 38, 28, 0.10), transparent 18rem),
    linear-gradient(135deg, #081735 0%, #111d42 100%);
}

/* ─── HEADINGS ─── */
.idf-heading {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.idf-heading-centered {
  text-align: center;
  margin-inline: auto;
}

.idf-heading h2 {
  color: var(--color-navy-900);
}

.idf-dark-section .idf-heading h2 {
  color: var(--color-white);
}

.idf-heading p {
  max-width: 52rem;
  color: var(--color-muted);
  line-height: 1.72;
  margin-top: 0.75rem;
}

.idf-section-copy h2 {
  color: var(--color-navy-900);
  margin-bottom: 1rem;
}

.idf-section-copy p {
  max-width: 48rem;
  color: var(--color-muted);
  line-height: 1.72;
}

.idf-section-copy p + p {
  margin-top: 0.75rem;
}

.idf-dark-section .idf-section-copy h2 {
  color: var(--color-white);
}

.idf-dark-section .idf-section-copy p {
  color: rgba(241, 245, 249, 0.78);
}

/* ─── SPLIT LAYOUT ─── */
.idf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 3rem;
  align-items: start;
}

/* ─── CHECK CARD ─── */
.idf-check-card {
  padding: 1.65rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.08);
}

.idf-check-card h3 {
  margin-bottom: 1rem;
  color: var(--color-navy-900);
  font-size: 1.22rem;
}

.idf-check-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.idf-check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.idf-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-red-600);
}

/* ─── SERVICE CARDS ─── */
.idf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.idf-service-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.75rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.08);
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.idf-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(11, 21, 51, 0.12);
}

.idf-service-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  background: var(--color-navy-900);
}

.idf-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.idf-service-card h3 {
  color: var(--color-navy-900);
  font-size: 1.2rem;
  line-height: 1.22;
}

.idf-service-card > p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.idf-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-red-600);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 180ms ease;
  padding-top: 0.25rem;
}

.idf-service-link:hover,
.idf-service-link:focus-visible {
  gap: 0.75rem;
}

.idf-service-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ─── CONSTRAINT CARDS (section sombre) ─── */
.idf-constraint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.idf-constraint-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  align-content: start;
}

.idf-constraint-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-red-600);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.idf-constraint-card h3 {
  color: var(--color-white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.22;
}

.idf-constraint-card p {
  color: rgba(241, 245, 249, 0.75);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ─── DÉPARTEMENT CARDS ─── */
.idf-dept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.idf-dept-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.06);
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.idf-dept-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(11, 21, 51, 0.10);
}

.idf-dept-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  background: rgba(225, 38, 28, 0.09);
  color: var(--color-red-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.idf-dept-card h3 {
  color: var(--color-navy-900);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
}

.idf-dept-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── TIMELINE (5 étapes) ─── */
.idf-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.idf-timeline li {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.06);
  align-content: start;
}

.idf-timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--color-red-600);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.idf-timeline h3 {
  color: var(--color-navy-900);
  font-size: 1.05rem;
  line-height: 1.25;
}

.idf-timeline p {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ─── SOLUTION CARDS ─── */
.idf-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.idf-solution-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.4rem;
  border: 1px solid rgba(11, 21, 51, 0.07);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.07);
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.idf-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(11, 21, 51, 0.11);
}

.idf-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: rgba(225, 38, 28, 0.09);
  color: var(--color-red-600);
  flex-shrink: 0;
}

.idf-card-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.idf-solution-card h3 {
  color: var(--color-navy-900);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.22;
}

.idf-solution-card p {
  color: var(--color-muted);
  font-size: 0.91rem;
  line-height: 1.62;
}

/* ─── PRICE PANEL ─── */
.idf-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.08);
}

.idf-price-panel h2 {
  color: var(--color-navy-900);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  margin-bottom: 0.75rem;
}

.idf-price-panel > div > p {
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.idf-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.2rem;
  list-style: none;
  padding: 0;
}

.idf-price-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.idf-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-red-600);
}

/* ─── MAILLAGE VILLES ─── */
.idf-cities-panel {
  padding: 2.2rem 2.5rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(11, 21, 51, 0.06);
}

.idf-cities-intro {
  max-width: 56rem;
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.idf-cities-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.idf-city-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1rem;
  border: 1px solid rgba(11, 21, 51, 0.1);
  border-radius: 999px;
  background: #f3f6fa;
  color: var(--color-navy-850);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

a.idf-city-chip:hover,
a.idf-city-chip:focus-visible {
  border-color: var(--color-red-600);
  background: rgba(225, 38, 28, 0.05);
  color: var(--color-red-600);
}

span.idf-city-chip {
  color: var(--color-muted);
}

.idf-cities-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* ─── FAQ SECTION ─── */
.idf-faq-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.idf-faq-section .faq-list {
  max-width: 52rem;
  margin-inline: auto;
}

/* ─── CTA FINAL ─── */
.idf-final-cta {
  padding: 5rem 0;
  background: #f3f6fa;
}

.idf-cta-card {
  max-width: 57.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem 2.75rem;
  border: 1px solid rgba(11, 21, 51, 0.08);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 24px 55px rgba(11, 21, 51, 0.10);
}

.idf-cta-card h2 {
  color: var(--color-navy-900);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  margin-bottom: 0.75rem;
  max-width: 28ch;
}

.idf-cta-card > div:first-child > p:not(.eyebrow) {
  color: var(--color-muted);
  line-height: 1.7;
  font-size: 0.96rem;
  max-width: 44rem;
}

.idf-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 230px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .idf-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .idf-hero-grid {
    grid-template-columns: 1fr;
  }

  .idf-hero-panel {
    max-width: 48rem;
    position: static;
  }

  .idf-split {
    grid-template-columns: 1fr;
  }

  .idf-price-panel {
    grid-template-columns: 1fr;
  }

  .idf-price-panel .btn {
    justify-self: start;
  }

  .idf-dept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idf-cta-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .idf-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .idf-hero {
    padding-top: 3.5rem;
  }

  .idf-hero-copy h1 {
    font-size: 2.35rem;
  }

  .idf-heading h2,
  .idf-section-copy h2 {
    font-size: 2.1rem;
  }

  .idf-trust-grid,
  .idf-constraint-grid,
  .idf-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idf-hero-proof {
    grid-template-columns: 1fr;
  }

  .idf-section {
    padding: 3.6rem 0;
  }

  .idf-faq-section {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .idf-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .idf-final-cta {
    padding: 3.5rem 0;
  }
}

@media (max-width: 620px) {
  .idf-hero > .container,
  .idf-section > .container,
  .idf-trust-strip > .container,
  .idf-faq-section > .container,
  .idf-final-cta > .container {
    width: min(calc(100% - 1.25rem), var(--container-max));
  }

  .idf-hero {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }

  .idf-hero-grid {
    gap: 1.6rem;
  }

  .idf-hero-copy h1 {
    font-size: 2rem;
  }

  .idf-heading h2,
  .idf-section-copy h2 {
    font-size: 1.85rem;
  }

  .idf-hero-copy > p:not(.eyebrow):not(.idf-hero-subtitle) {
    font-size: 1rem;
  }

  .idf-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .idf-hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .idf-hero-panel {
    border-radius: 20px;
  }

  .idf-lead-form {
    padding: 1rem;
  }

  .idf-form-grid,
  .idf-trust-grid,
  .idf-constraint-grid,
  .idf-timeline,
  .idf-solution-grid,
  .idf-dept-grid,
  .idf-price-list,
  .idf-service-grid {
    grid-template-columns: 1fr;
  }

  .idf-hero-proof {
    grid-template-columns: 1fr;
  }

  .idf-cta-card {
    padding: 1.5rem 1.35rem;
  }

  .idf-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .idf-cta-actions .btn {
    width: 100%;
  }

  .idf-cities-panel {
    padding: 1.5rem 1.25rem;
  }
}
