/* GeoArea Mobile UX A1: home property sliders + full-width services. */
.ga-mobile-slider__controls,
.ga-mobile-slider__dots {
  display: none;
}

@media (max-width: 767px) {
  .ga-property-section .ga-section__head {
    align-items: center;
    gap: 10px;
  }

  .ga-property-section .ga-section__head h2 {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.25;
  }

  .ga-property-section .ga-section__head > a {
    font-size: 13px;
    white-space: nowrap;
  }

  .ga-mobile-slider__controls {
    display: flex;
    gap: 8px;
    margin-left: auto;
  }

  .ga-mobile-slider__arrow {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(18, 47, 89, .12);
    border-radius: 999px;
    background: #fff;
    color: var(--ga-text, #10213d);
    box-shadow: 0 8px 22px rgba(15, 36, 68, .09);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
  }

  .ga-mobile-slider__arrow:active {
    transform: scale(.94);
  }

  .ga-mobile-slider__arrow:disabled {
    opacity: .35;
    cursor: default;
    box-shadow: none;
  }

  .ga-property-section .ga-property-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 7vw 12px 0;
    margin-right: -16px;
    touch-action: pan-x pan-y;
  }

  .ga-property-section .ga-property-grid::-webkit-scrollbar {
    display: none;
  }

  .ga-property-section .ga-property-grid > * {
    flex: 0 0 min(84vw, 360px);
    width: min(84vw, 360px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .ga-property-section .ga-property-grid > .ga-empty-state {
    flex-basis: 100%;
    width: 100%;
  }

  .ga-mobile-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    min-height: 20px;
    margin-top: 7px;
  }

  .ga-mobile-slider__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(26, 55, 98, .22);
    transition: width .2s ease, background .2s ease;
    cursor: pointer;
  }

  .ga-mobile-slider__dot.is-active {
    width: 24px;
    background: var(--ga-primary, #205bd8);
  }

  .ga-mobile-slider--empty .ga-mobile-slider__controls,
  .ga-mobile-slider--empty .ga-mobile-slider__dots {
    display: none;
  }

  /* Services remain fully expanded vertically on mobile. */
  .ga-services .ga-services__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  .ga-services .ga-service-card {
    display: grid !important;
    grid-template-columns: 42% minmax(0, 1fr);
    width: 100%;
    min-height: 150px;
    overflow: hidden;
  }

  .ga-services .ga-service-card > img {
    width: 100% !important;
    height: 100% !important;
    min-height: 150px;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .ga-services .ga-service-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    min-height: 150px !important;
    padding: 18px 16px !important;
  }

  .ga-services .ga-service-card h3 {
    margin: 0 0 8px !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .ga-services .ga-service-card p {
    display: block !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}

@media (max-width: 420px) {
  .ga-mobile-slider__arrow {
    width: 38px;
    height: 38px;
  }

  .ga-services .ga-service-card {
    grid-template-columns: 38% minmax(0, 1fr);
  }
}
