@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url(/fonts/inter-600-v19.woff2) format("woff2");
}
/* ------------------------------ Hero Section ------------------------------ */
.hero-section .hero-section-heading {
  padding: var(--spacer-l) 0;
}
.hero-section .hero-section-heading h1 {
  margin-bottom: var(--spacer);
}
.hero-section .hero-section-heading h3 {
  margin-bottom: var(--spacer-m);
}
.hero-section .hero-section-heading p {
  line-height: 1.5;
  margin-bottom: var(--spacer-m);
  max-width: 70ch;
  margin-inline: auto;
}

/* ---------------------------- Locations Section --------------------------- */
.locations-section h3 {
  margin-top: var(--spacer);
  margin-bottom: var(--spacer-l);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacer-m);
}

.location-card {
  background: #fff;
  border-radius: var(--border-rad);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--c-primary);
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.location-card-image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.location-card:hover .location-card-image {
  transform: scale(1.05);
}

.location-card-content {
  padding: var(--spacer-m);
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.location-card-content h4 {
  font: var(--h4-font);
  margin-bottom: calc(var(--spacer) / 2);
  line-height: 1.3;
}
.location-card-content p {
  font: var(--p-font);
  font-size: clamp(0.9rem, 0.855rem + 0.227vw, 1rem);
  flex-grow: 1;
  margin-bottom: var(--spacer);
  line-height: 1.6;
}

.location-card-link {
  font: var(--h4-font);
  color: var(--c-accent);
  text-decoration: none;
  margin-top: auto;
  font-weight: 600;
  transition: color 0.3s ease;
}
.location-card-link:hover {
  color: var(--c-primary);
}

.cta-section {
  padding-bottom: var(--spacer-l);
}

/* ------------------------------ Media Queries ----------------------------- */
@media screen and (max-width: 48rem) {
  .hero-section .hero-section-heading {
    padding: var(--spacer-m) 0;
  }
}/*# sourceMappingURL=styles_locations_landing.css.map */