.static-map-frame {
  padding: 0;
  overflow: hidden;
  background: #061b33;
}

.static-map-frame::before,
.static-map-frame::after {
  content: none;
  pointer-events: none;
}

.static-location-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  color: #fffaf2;
  background: #061b33;
}

.static-location-card-compact {
  min-height: 444px;
}

.static-location-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.static-location-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 27, 51, 0.06) 32%, rgba(6, 27, 51, 0.9) 100%);
}

.static-location-card.is-map::after {
  background: linear-gradient(180deg, rgba(6, 27, 51, 0.02) 48%, rgba(6, 27, 51, 0.86) 100%);
}

.static-map-attribution {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  color: #061b33;
  background: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  line-height: 1;
}

.static-location-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.static-location-caption i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #d5a44d;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.static-location-caption i::after {
  position: absolute;
  inset: 8px;
  content: "";
  background: #d5a44d;
  border-radius: 50%;
}

.static-location-caption strong,
.static-location-caption small {
  display: block;
}

.static-location-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.static-location-caption small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.static-location-caption b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  color: #061b33;
  background: #d9aa52;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.static-location-card:hover > img,
.static-location-card:focus-visible > img {
  transform: scale(1.025);
  filter: saturate(0.92) contrast(1.04);
}

.static-location-card:focus-visible {
  outline: 3px solid #c7953e;
  outline-offset: -3px;
}

@media (max-width: 860px) {
  .static-location-card,
  .static-location-card-compact {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .static-location-card,
  .static-location-card-compact {
    min-height: 320px;
  }


  .static-location-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .static-location-caption b {
    grid-column: 2;
  }
}


@media (max-width: 560px) {
  .home-page .static-location-card-compact {
    min-height: 300px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .static-location-card > img { transition: none; }
  .static-location-card:hover > img,
  .static-location-card:focus-visible > img { transform: none; }
}