.sa-widget {
  overflow: hidden;
  padding-bottom: 30px;
  max-width: 1400px;
  margin-right: 0;
  margin-left: auto;
}
.sa-widget * {
  box-sizing: border-box;
}
.sa-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.sa-col {
  padding: 0 10px;
}

/* Map column: fills remaining space, image centered */
.sa-col-map {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sa-map-container {
  position: relative;
  max-width: 100%;
}
.sa-map-image {
  width: 100%;
  height: auto;
  display: block;
}
.sa-map-marker {
  position: absolute;
  top: 49.27%;
  left: 51.5%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
.sa-map-marker i {
  font-size: 45px;
  color: #ffffff;
  display: block;
}
.sa-marker-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 10px;
  background: rgba(0,0,0,0.85);
  border-radius: 4px;
  padding: 10px;
  white-space: nowrap;
}
.sa-marker-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: rgba(0,0,0,0.85);
}
.sa-map-marker:hover .sa-marker-tooltip {
  display: block;
}
.sa-marker-tooltip img {
  display: block;
  max-width: 232px;
  height: auto;
}

/* Tabs column: fixed width so it never resizes between tabs */
.sa-col-tabs {
  flex: 0 0 auto;
  padding: 20px 10px;
}
.sa-heading {
  font-size: 48px;
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 500;
  line-height: 1.2;
}

/* Pagination dots */
.sa-pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0 0 20px 0;
}
.sa-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #5472d2;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s;
}
.sa-dot.sa-active {
  background: #5472d2;
}

/* Panels - fixed size so layout doesn't jump between tabs */
.sa-panels {
  position: relative;
}
.sa-panel {
  display: none;
}
.sa-panel.sa-active {
  display: block;
}

/* City columns - 4 columns flowing top-to-bottom, balanced */
.sa-city-columns {
  display: flex;
  width: 100%;
}
.sa-city-col {
  flex: 0 0 25%;
  min-width: 0;
  padding: 0 10px;
}
.sa-city-col p {
  text-align: center;
  margin: 0;
  padding: 5px 0;
  font-size: 15px;
  line-height: 1.7;
}
.sa-city-col a {
  color: #20409a;
  text-decoration: none;
}
.sa-city-col a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .sa-widget {
    margin-left: auto;
    margin-right: auto;
  }
  .sa-row {
    flex-direction: column;
  }
  .sa-col-map,
  .sa-col-tabs {
    width: 100%;
    flex: none;
  }
  .sa-col-map {
    margin-bottom: 20px;
    padding: 10px;
  }
  .sa-map-container {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .sa-heading {
    font-size: 36px;
  }
  .sa-city-columns {
    flex-wrap: wrap;
  }
  .sa-city-col {
    flex: 0 0 33.33%;
  }
  .sa-city-col p {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .sa-col-tabs {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .sa-heading {
    font-size: 28px;
  }
  .sa-city-col {
    flex: 0 0 50%;
  }
}
