
.location-card {
  margin-top: 1rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.location-card.is-ready {
  border-color: rgba(235, 106, 165, 0.2);
  box-shadow: 0 24px 40px rgba(235, 106, 165, 0.12);
}

.location-badge {
  display: inline-flex;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(235, 106, 165, 0.12);
  color: #a22969;
  font-weight: 800;
  margin-bottom: .9rem;
}

.location-card h3 {
  margin: 0 0 .55rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.location-text,
.location-helper {
  color: var(--gray-500);
}

.location-text {
  margin: 0 0 1rem;
}

.location-banner {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow-md);
  min-height: 220px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,251,.98));
}

.location-banner iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  border: 0;
}

.location-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
}

.location-meta-copy {
  display: grid;
  gap: .18rem;
}

.location-meta-copy span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  font-weight: 800;
}

.location-meta-copy strong {
  font-size: 1rem;
}

.location-open-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  white-space: nowrap;
}

.location-helper {
  margin: .85rem 0 0;
  font-size: .95rem;
}

@media (max-width: 820px) {
  .location-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .location-open-map {
    width: 100%;
  }
}
