.location-home-main {
  background: #ffffff;
}

.location-home-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
}

.location-home-hero__media {
  min-height: 480px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}

.location-home-hero__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.location-home-hero__content {
  max-width: 760px;
  padding: 72px 0;
}

.location-home-hero .breadcrumbs,
.location-home-hero .breadcrumbs a,
.location-home-hero .breadcrumbs span {
  color: rgba(255, 255, 255, 0.9);
}

.location-home-hero .breadcrumbs {
  margin: 0 0 14px;
}

.location-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.location-home-copy,
.location-home-map-card,
.location-home-detail-card,
.location-home-note {
  background: #ffffff;
  border: 1px solid rgba(23, 49, 74, 0.08);
  box-shadow: 0 12px 28px rgba(16, 45, 78, 0.05);
}

.location-home-copy {
  padding: 34px;
}

.location-home-title {
  max-width: 620px;
  margin-bottom: 14px;
}

.location-home-intro {
  margin: 0;
  max-width: 580px;
  color: #5c6779;
  font-size: 15px;
  line-height: 1.8;
}

.location-home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.location-home-action {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 15px 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(23, 49, 74, 0.08);
  background: #f8fafc;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-home-action:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 159, 211, 0.18);
  box-shadow: 0 10px 20px rgba(16, 45, 78, 0.06);
}

.location-home-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(20, 159, 211, 0.10);
  color: var(--teal-dark);
  flex: 0 0 50px;
}

.location-home-action__icon svg {
  width: 22px;
  height: 22px;
}

.location-home-action__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.location-home-action__text strong,
.location-home-detail-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  margin: 0;
}

.location-home-action__text small {
  color: #5c6779;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.location-home-map-card {
  padding: 18px;
}

.location-home-map-frame {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 74, 0.08);
}

.location-home-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  height: 100%;
  border: 0;
}

.location-home-center-head {
  margin-bottom: 30px;
}

.location-home-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.location-home-detail-card {
  padding: 24px 22px;
}

.location-home-detail-card p {
  margin: 10px 0 0;
  color: #5c6779;
  font-size: 15px;
  line-height: 1.8;
}

.location-home-note {
  padding: 30px;
}

.location-home-note .prose > *:first-child {
  margin-top: 0;
}

.location-home-note .prose > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .location-home-hero__media,
  .location-home-hero__inner {
    min-height: 420px;
  }

  .location-home-grid {
    grid-template-columns: 1fr;
  }

  .location-home-map-frame iframe {
    min-height: 380px;
  }

  .location-home-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .location-home-hero__inner {
    width: min(var(--container), 93%);
  }

  .location-home-hero__media,
  .location-home-hero__inner {
    min-height: 360px;
  }

  .location-home-hero__content {
    padding: 54px 0;
  }

  .location-home-copy,
  .location-home-map-card,
  .location-home-detail-card,
  .location-home-note {
    padding: 22px 18px;
  }

  .location-home-actions {
    grid-template-columns: 1fr;
  }

  .location-home-action {
    min-height: 70px;
    padding: 14px;
  }

  .location-home-action__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .location-home-map-card {
    padding: 14px;
  }

  .location-home-map-frame iframe {
    min-height: 320px;
  }
}
