﻿.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.location-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(51, 54, 69, 0.07);
}

.location-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.location-card p {
  color: var(--ink-soft);
}

.locations-hero {
  padding: 110px 0 92px;
  color: #fff;
  background: linear-gradient(90deg, rgba(35, 37, 47, 0.97), rgba(35, 37, 47, 0.78)), url("../images/hero.jpg") center / cover no-repeat;
}

.locations-hero h1 {
  max-width: 850px;
}

.locations-hero > .container > p:last-child {
  max-width: 720px;
  color: #ececf2;
  font-size: 1.15rem;
}

.locations-hero a {
  color: var(--gold);
  font-weight: 900;
}

.locations-cta {
  padding: 64px 0;
  color: #fff;
  background: var(--ink);
}

.locations-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.locations-cta h2,
.locations-cta p {
  margin-bottom: 8px;
}

.mobile-call-bar {
  display: none;
}

body[data-ads-site] .footer__grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

@media (max-width: 1080px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-ads-site] .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body[data-ads-site] {
    padding-bottom: 62px;
  }

  .location-grid,
  body[data-ads-site] .footer__grid {
    grid-template-columns: 1fr;
  }

  .locations-hero {
    padding: 80px 0 68px;
  }

  .locations-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 -8px 24px rgba(35, 37, 47, 0.24);
    font-size: 1.05rem;
    font-weight: 900;
  }
}
