/* ── Map block — Figma 1961:1542 ─────────────────────────────────────────── */

.pw-map {
  border: 1px solid rgba(213, 93, 29, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

/* ── Map iframe ─────────────────────────────────────────────────────────── */

.pw-map__media {
  position: relative;
  aspect-ratio: 806 / 213;
  overflow: hidden;
}

.pw-map__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.pw-map__media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f0efeb;
  color: #aaa;
  font-size: 13px;
}

/* ── Info panel ─────────────────────────────────────────────────────────── */

.pw-map__info {
  background: #c5e5cc;
  padding: 30px 30px 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.pw-map__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.pw-map__venue-name {
  font-size: 24px;
  font-weight: 700;
  color: #2d2a27;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
}

.pw-map__venue-address {
  font-size: 20px;
  font-weight: 400;
  color: #2d2a27;
  letter-spacing: 1px;
  line-height: 1.2;
  font-style: normal;
  margin: 0;
}

/* ── Open-in-maps link ──────────────────────────────────────────────────── */

.pw-map__link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
  transition: opacity 0.15s;
}

.pw-map__link:hover {
  opacity: 0.65;
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .pw-map__info {
    padding: 20px 20px 32px;
    gap: 16px;
  }

  .pw-map__venue-name {
    font-size: 18px;
  }

  .pw-map__venue-address {
    font-size: 16px;
  }
}
