.page--standorte {
  --loc-green: #2e4f20;
  --loc-ink: #1f2b20;
  --loc-muted: #536154;
  --loc-line: #dbe6da;
  --loc-soft: #f3f7f1;
  padding: 50px 0 60px;
}

.standorte-page__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.standorte-header h1 {
  margin: 0 0 10px;
  color: var(--loc-green);
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem);
}

.standorte-header p {
  margin: 0 0 1.45rem;
  color: var(--loc-muted);
  line-height: 1.7;
  max-width: 70ch;
}

.locations-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-col {
  border: 0;
  border-radius: 14px;
  overflow: clip;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  box-shadow: 0 1px 0 var(--loc-line);
  transition: box-shadow .22s ease, transform .22s ease;
}

.location-col:hover {
  box-shadow: 0 10px 24px rgba(22, 35, 26, 0.08);
  transform: translateY(-2px);
}

.location-col img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f8faf7;
  border-radius: 10px;
}

.location-heading {
  font-size: 1.18rem;
  font-weight: 700;
  margin: .9rem .9rem .55rem;
  color: var(--loc-green);
  line-height: 1.35;
}

.location-address,
.location-open,
.location-desc {
  margin: 0 .9rem .85rem;
  line-height: 1.7;
  color: var(--loc-ink);
}

.location-open strong {
  display: inline-block;
  margin-bottom: .3rem;
  color: var(--loc-green);
}

.location-address a {
  color: var(--loc-green);
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}

.location-address a:hover {
  text-decoration: none;
}

.location-address a:focus-visible {
  outline: 2px solid var(--loc-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.standorte-map-section {
  margin-top: 1.5rem;
  border-top: 1px solid var(--loc-line);
  padding-top: 1.2rem;
}

.standorte-map-section .scharr-map-wrapper,
.standorte-map-section .scharr-map {
  border-radius: 14px;
}

.standorte-map-section .scharr-map-wrapper {
  min-height: 420px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (max-width: 768px) {
  .page--standorte {
    padding: 50px 0 50px;
  }

  .standorte-page__container {
    width: min(1200px, calc(100% - 24px));
  }

  .locations-row {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .location-col {
    border-radius: 12px;
  }

  .location-heading {
    margin: .85rem .8rem .5rem;
  }

  .location-address,
  .location-open,
  .location-desc {
    margin: 0 .8rem .8rem;
  }

  .standorte-map-section .scharr-map-wrapper {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-col {
    transition: none;
  }
}
