/* ===== Balô Relocation Modal (Dismissible + Scroll-Safe) ===== */

.balo-annc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;                 /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 10050;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.balo-annc-overlay.is-open {
  display: flex;
  opacity: 1;
}

.balo-annc-modal {
  background: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 95vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
.balo-annc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #f0e0dc;
  background: #fff7f5;
}

.balo-annc-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.balo-annc-title {
  margin: 0;
  font-size: 22px;
  color: #ca3d26;
  font-weight: 800;
}

.balo-annc-close {
  margin-left: auto;
  font-size: 24px;
  font-weight: bold;
  color: #ca3d26;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.balo-annc-close:hover {
  color: #a42b1b;
}

/* ===== Body / Layout ===== */
.balo-annc-body {
  padding: 18px 20px;
}
.balo-annc-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 16px 0;
}
.balo-annc-subtitle {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #333;
}
.balo-annc-list {
  margin: 0 0 16px 20px;
}
.balo-annc-closing {
  margin-top: 10px;
}
.balo-annc-signature {
  margin: 18px 0 0;
  text-align: right;
}

/* ===== Locations ===== */
.balo-annc-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .balo-annc-locations {
    grid-template-columns: 1fr 1fr;
  }
}

.balo-annc-card {
  border: 1px dashed #f0e0dc;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.balo-annc-loc-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.balo-annc-map {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 5:3 ratio */
  border-radius: 8px;
  overflow: hidden;
}

.balo-annc-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Scroll Lock Only When Modal Open ===== */
body.modal-open {
  overflow: hidden;
}
