/* ═══════════════════════════════════════════════════════════
   DATA HOMEPAGE
═══════════════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────────── */
.dh-hero {
  padding: 2rem 3.75rem;
  overflow: visible;
}

.dh-hero__container {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(261.18deg, #E09F3E 17.87%, #9E2A2B 58.34%, #540B0E 94.52%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  position: relative;
  height: 526px;
  padding: 3.75rem 0 3.75rem 3.75rem;
  overflow: hidden;
}

.dh-hero__content {
  flex: 0 0 52%;
  max-width: 52%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dh-hero__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 64px;
}

.dh-hero__sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 400px;
}

.dh-hero__input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dh-hero__input-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.dh-hero__input-row {
  width: 419px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: 1.09px solid #E2E8F0;
  padding: 16px 17px;
  background: #ffffff;
  gap: 10px;
}

.dh-hero__input-row > svg {
  flex-shrink: 0;
  stroke: #6E6E6E;
}

.dh-hero__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  color: #6E6E6E;
}

.dh-hero__input::placeholder {
  color: #6E6E6E;
}

.dh-hero__input-btn {
  width: 40px;
  height: 38px;
  border-radius: 8px;
  background: #071738;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.dh-hero__input-btn:hover {
  background: #0e2147;
}

.dh-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 32px;
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.dh-hero__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

/* Spirals */
.dh-hero__spiral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.dh-hero__spiral--1 {
  top: 131px;
  left: -2px;
  width: 210px;
  opacity: 1;
}

.dh-hero__spiral--2 {
  top: 54px;
  left: -12px;
  width: 390px;
  opacity: 1;
}

/* Design / decorative image */
.dh-hero__design {
  position: absolute;
  top: -6px;
  right: -54px;
  width: 486px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Woman image */
.dh-hero__img {
  position: absolute;
  bottom: 1px;
  right: 126px;
  height: 100%;
  width: auto;
  z-index: 2;
  pointer-events: none;
}

/* ─── FEATURE CARDS SLIDER ──────────────────────────────── */
.dh-cards {
  padding: 3rem 3.75rem 2rem;
  background: #ffffff;
  overflow: hidden;
}

.dh-cards__viewport {
  overflow: hidden;
  width: 100%;
}

.dh-cards__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23.77px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.dh-card {
  width: 100%;
  height: 366px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.dh-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dh-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 23, 56, 0.85) 0%, rgba(7, 23, 56, 0.4) 60%, rgba(7, 23, 56, 0.1) 100%);
}

.dh-card__body {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: flex-start;
}

.dh-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #ffffff;
}

.dh-card__desc {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 23.77px;
  line-height: 120%;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Country dropdown ─────────────────────────────────────────────────────── */
.dh-country-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 100;
  overflow: hidden;
}


.dh-country-dropdown__search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  color: #9ca3af;
}

.dh-country-dropdown__search {
  border: none;
  outline: none;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  width: 100%;
  color: #071738;
}

.dh-country-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 260px;
  overflow-y: auto;
}

.dh-country-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: #071738;
  transition: background 0.15s;
}

.dh-country-dropdown__item:hover {
  background: #f3f4f6;
}

.dh-country-dropdown__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.dh-cards__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1320px;
  margin: 1.5rem auto 0;
  padding: 0 3.75rem;
}

.dh-cards__dots {
  grid-column: 2;
}

.dh-cards__nav {
  grid-column: 3;
  justify-self: end;
}

.dh-cards__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dh-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9D9D9;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
  cursor: pointer;
}

.dh-dot.active {
  background: #071738;
  width: 32px;
  border-radius: 20px;
}

.dh-cards__nav {
  display: flex;
  gap: 10px;
}

.dh-cards__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D9D9D9;
  color: #ffffff;
  transition: background 0.2s;
}

.dh-cards__arrow.active,
.dh-cards__arrow:hover {
  background: #071738;
}

/* ─── FLEXIBLE DATA PLANS ───────────────────────────────── */
.dh-plans {
  padding: 5rem 3.75rem;
  background: linear-gradient(180deg, #F8F6FF 0%, #F4F7FE 100%);
}

.dh-plans__container {
  max-width: 1320px;
  margin: 0 auto;
}

.dh-plans__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #071738;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.dh-plans__sub {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #170F49;
  margin-bottom: 2rem;
}

.dh-plans__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.dh-plans__tab {
  padding: 10px 24px;
  border-radius: 40px;
  border: 1.5px solid #E2E8F0;
  background: #ffffff;
  color: #071738;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.dh-plans__tab.active {
  background: #071738;
  border-color: #071738;
  color: #ffffff;
}

.dh-plans__tab:hover:not(.active) {
  border-color: #071738;
}

.dh-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dh-plan-card {
  background: #ffffff;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}

.dh-plan-card:hover {
  box-shadow: 0 8px 32px rgba(7, 23, 56, 0.08);
}

.dh-plan-card--featured {
  background: linear-gradient(135deg, #071738 0%, #1a3a6e 100%);
  border-color: transparent;
  color: #ffffff;
}

.dh-plan-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dh-plan-card__country {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #071738;
}

.dh-plan-card--featured .dh-plan-card__country {
  color: rgba(255, 255, 255, 0.8);
}

.dh-plan-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #FFC067;
  color: #1a0a00;
  white-space: nowrap;
}

.dh-plan-card__badge--white {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.dh-plan-card__data {
  font-family: 'Urbanist', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #071738;
  line-height: 1;
}

.dh-plan-card--featured .dh-plan-card__data {
  color: #ffffff;
}

.dh-plan-card__details {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #6E7A8A;
}

.dh-plan-card--featured .dh-plan-card__details {
  color: rgba(255, 255, 255, 0.6);
}

.dh-plan-card__price {
  font-family: 'Urbanist', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #071738;
}

.dh-plan-card--featured .dh-plan-card__price {
  color: #ffffff;
}

.dh-plan-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 40px;
  background: #071738;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: auto;
}

.dh-plan-card__btn:hover {
  background: #0e2147;
}

.dh-plan-card__btn--white {
  background: #ffffff;
  color: #071738;
}

.dh-plan-card__btn--white:hover {
  background: #f0f0f0;
}

.dh-plans__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.dh-plans .esim-filter {
  max-width: 640px;
  padding-right: 32px;
  margin-bottom: 0;
}

.dh-plans__location {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.dh-plans__location-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #071738;
}

.dh-plans__location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 157px;
  height: 36px;
  border-radius: 29px;
  padding: 8px 7px 8px 8px;
  background: #ffffff;
  box-sizing: border-box;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #071738;
}

.dh-plans__location-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dh-plans .esim-plan-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dh-plans__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.dh-plans__view-all {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 171px;
  height: 44px;
  border-radius: 40px;
  padding: 10px 26px;
  background: #000000;
  border: none;
  box-sizing: border-box;
  justify-content: center;
  transition: opacity 0.2s;
}

.dh-plans__view-all:hover {
  opacity: 0.7;
}

/* ─── 4 STEPS ───────────────────────────────────────────── */
.dh-steps {
  padding: 5rem 3.75rem;
  background: #ffffff;
}

.dh-steps__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.dh-steps__left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dh-steps__eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6E7A8A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dh-steps__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #071738;
  line-height: 1.2;
}

.dh-steps__sub {
  font-size: 15px;
  color: #6E7A8A;
  line-height: 1.6;
}

.dh-steps__download {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 0.5rem;
}

.dh-steps__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dh-steps__badge {
  height: 44px;
  width: auto;
}

.dh-steps__or-qr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dh-steps__or {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: #6E7A8A;
}

.dh-steps__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dh-steps__qr {
  width: 72px;
  height: 72px;
}

.dh-steps__qr-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  color: #6E7A8A;
}

.dh-steps__right {
  flex: 1;
}

.dh-steps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dh-step-card {
  width: 380px;
  height: 400px;
  background: #F0EBFF;
  border-radius: 40px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.dh-step-card__img {
  position: absolute;
  top: 35px;
  left: 63px;
  width: 257px;
  height: auto;
}

.dh-step-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  width: 380px;
  height: 80px;
  background: #F7F5F3;
  box-sizing: border-box;
  z-index: 3;
}

.dh-step-card__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #071738;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dh-step-card__text {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #071738;
  line-height: 1.3;
}

/* ─── WHAT DISTINGUISHES ESDIAC ─────────────────────────── */
.dh-distinguish {
  padding: 5rem 3.75rem;
  background: #F7F5F3;
}

.dh-distinguish__container {
  max-width: 1320px;
  margin: 0 auto;
}

.dh-distinguish__focus {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #DBA100;
  margin-bottom: 0.75rem;
}

.dh-distinguish__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #071738;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.75rem;
}

.dh-distinguish__esdiac {
  font-weight: 900;
  font-size: 40px;
  color: #071738;
}

.dh-distinguish__sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: #6E7A8A;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.dh-distinguish__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.dh-dist-card {
  background: transparent;
  border: none;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.dh-dist-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dh-dist-card__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #071738;
  text-align: center;
  margin-top: 4px;
}

.dh-dist-card__desc {
  font-size: 15px;
  color: #6E7A8A;
  line-height: 1.6;
  text-align: center;
}

/* ─── REVIEWS ───────────────────────────────────────────── */
.dh-review-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 317px;
  flex-shrink: 0;
}

.dh-review__stars {
  color: #FFC067;
  font-size: 18px;
  letter-spacing: 2px;
}

.dh-review__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  flex: 1;
}

.dh-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dh-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.dh-review__name {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.dh-review__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   DATA PAGE — RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  /* ─── HERO: hide decoratives, center content ──────────── */
  .dh-hero__img,
  .dh-hero__design,
  .dh-hero__spiral--1,
  .dh-hero__spiral--2 {
    display: none !important;
  }

  .dh-hero {
    padding: 1rem 1.25rem;
  }

  .dh-hero__container {
    height: auto !important;
    min-height: unset !important;
    padding: 3rem 2rem;
    justify-content: center;
    align-items: center;
  }

  .dh-hero__content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    align-items: center;
    text-align: center;
  }

  .dh-hero__title {
    font-size: 42px;
    line-height: 52px;
  }

  .dh-hero__sub {
    max-width: 100%;
    text-align: center;
  }

  .dh-hero__input-row {
    width: 100%;
    max-width: 480px;
  }

  /* ─── FEATURE CARDS: stack on tablet ─────────────────── */
  .dh-cards {
    padding: 2rem 1.5rem;
  }

  .dh-cards__track {
    grid-template-columns: 1fr;
  }

  /* ─── DATA PLANS: stack controls, 2-col grid ─────────── */
  .dh-plans {
    padding: 3rem 1.5rem;
  }

  .dh-plans__title {
    font-size: 36px;
  }

  .dh-plans__controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .dh-plans .esim-filter {
    max-width: 100%;
    padding-right: 0;
  }

  .dh-plans__location {
    align-items: flex-end;
    align-self: flex-end;
  }

  .dh-plans .esim-plan-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ─── 4 STEPS: stack left above right ────────────────── */
  .dh-steps {
    padding: 3rem 1.5rem;
  }

  .dh-steps__container {
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .dh-steps__left {
    flex: 0 0 auto !important;
    width: 100%;
  }

  .dh-steps__right {
    width: 100%;
  }

  .dh-steps__title {
    font-size: 32px;
  }

  .dh-step-card {
    width: 100% !important;
    height: 280px;
    box-sizing: border-box;
  }

  .dh-step-card__label {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* ─── DISTINGUISH: 2-col grid ────────────────────────── */
  .dh-distinguish {
    padding: 3rem 1.5rem;
  }

  .dh-distinguish__title {
    font-size: 32px;
  }

  .dh-distinguish__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  /* ─── WHATSAPP CTA ────────────────────────────────────── */
  .whatsapp-cta__container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .whatsapp-cta__left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whatsapp-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .dh-country-dropdown {
    right: 0;
    left: auto;
    width: 260px;
    max-width: calc(100vw - 32px);
  }

  /* ─── HERO ────────────────────────────────────────────── */
  .dh-hero__title {
    font-size: 34px;
    line-height: 42px;
  }

  /* ─── FEATURE CARDS: compact ─────────────────────────── */
  .dh-cards {
    padding: 2rem 1.25rem;
  }

  .dh-card {
    width: 100% !important;
    height: 280px;
  }

  .dh-card__title {
    font-size: 26px;
  }

  .dh-card__desc {
    font-size: 16px;
  }

  .dh-cards__footer {
    padding: 0 1.25rem;
  }

  /* ─── DATA PLANS: 1-col grid ─────────────────────────── */
  .dh-plans {
    padding: 2.5rem 1.25rem;
  }

  .dh-plans__title {
    font-size: 28px;
  }

  .dh-plans .esim-plan-grid {
    grid-template-columns: 1fr !important;
  }

  /* ─── 4 STEPS: 2-col step grid, smaller cards ────────── */
  .dh-steps {
    padding: 2.5rem 1.25rem;
  }

  .dh-steps__title {
    font-size: 28px;
  }

  .dh-steps__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dh-step-card {
    height: 220px;
  }

  .dh-step-card__img {
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* ─── DISTINGUISH: 1-col ─────────────────────────────── */
  .dh-distinguish {
    padding: 2.5rem 1.25rem;
  }

  .dh-distinguish__title {
    font-size: 26px;
  }

  .dh-distinguish__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ─── FRESH READS: 1-col ─────────────────────────────── */
  .fresh-reads__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {

  /* ─── 4 STEPS: 1-col on small screens ────────────────── */
  .dh-steps__grid {
    grid-template-columns: 1fr;
  }

  .dh-step-card {
    height: 260px;
  }

  .dh-step-card__img {
    width: 200px;
  }
}
