/* ── Sucursales page ── */
.po-suc-page {
  min-height: 60vh;
}

.po-suc-wrap {
  width: var(--po-content-w, min(1600px, 95vw));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.po-suc-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid #3483FA;
  display: inline-block;
}

.po-suc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.po-suc-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.10), 0 1px 6px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.po-suc-card__header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  gap: 12px;
}

.po-suc-card__icon {
  width: 40px;
  height: 40px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.po-suc-card__icon svg {
  width: 20px;
  height: 20px;
  fill: #3483FA;
}

.po-suc-card__name {
  font-size: 20px;
  font-weight: 200;
  color: #333;
  margin: 0;
}

.po-suc-card__body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.po-suc-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.po-suc-info-row svg {
  width: 16px;
  height: 16px;
  fill: #3483FA;
  margin-top: 2px;
  flex-shrink: 0;
}

.po-suc-info-row strong {
  color: #333;
  font-weight: 600;
}

.po-suc-card__map {
  flex: 1;
  min-height: 300px;
}

.po-suc-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

@media (max-width: 900px) {
  .po-suc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .po-suc-wrap {
    padding: 20px 0 40px;
  }
  .po-suc-page-title {
    font-size: 18px;
  }
  .po-suc-card__map,
  .po-suc-card__map iframe {
    min-height: 220px;
  }
}
