.public-location-card {
  display: grid;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid #eadfd5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23, 63, 74, 0.06);
}

.public-location-card > header {
  display: flex;
  align-items: flex-start;
  padding: 18px;
  gap: 11px;
}

.public-location-card > header > span {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(240, 100, 59, 0.12);
  color: #f0643b;
  flex: 0 0 auto;
  place-items: center;
}

.public-location-card h2,
.public-location-card p {
  margin: 0;
}

.public-location-card h2 {
  color: #173f4a;
  font-size: 1rem;
}

.public-location-card p {
  margin-top: 3px;
  color: #6f746f;
  font-size: 0.74rem;
  line-height: 1.4;
}

.public-map-stage {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-top: 1px solid #eadfd5;
}

.public-map-stage iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 760px) {
  .public-map-stage {
    height: 340px;
  }
}
