/* info-tabs.css */
.info-main-content .info-tabs {
  max-width: 44rem;
  margin: 0 auto;
  width: auto;
}

.info-tabs .tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  justify-content: center;
}

.info-tabs .tabs__panel {
  display: none;
  border: none;
  border-radius: none;
  padding: 0;
  margin-top: 0;
}

.info-tabs .tabs__panel.is-active {
  display: block;
}

.info-tabs .map-wrapper {
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
}

.info-tabs .map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none; /* ensure no default HTML border */
}

.info-tabs .map-image-wrapper {
  margin-bottom: 2rem;
}

.info-tabs .map-image-wrapper img {
  border-radius: 1rem;
}

.info-tabs .tab-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-tabs .content-wrapper {
  padding-inline: 0;
}

.info-tabs .info-text-section {
  margin-inline: 0;
  text-align: left;
}

/* ===============================
   Desktop
   =============================== */
@media (min-width: 64rem) {
  .info-tabs .map-wrapper iframe {
    height: 480px;
  }
  .info-tabs .tabs__list {
    justify-content: flex-start;
  }
}
