/* Two-column flex row */
.two-col {
  display: flex;
  gap: 2rem;
  /* spacing between columns */
  align-items: stretch;
  flex-wrap: nowrap;
}

/* Column basics:
     flex-basis 50% so each column is half; allow shrink/grow for fluidity */
.two-col .col {
  flex: 1 1 50%;
  min-width: 0;
}

/* Responsive: stack to full width on smaller screens */
@media (max-width: 768px) {
  .two-col {
    flex-wrap: wrap;
  }

  .two-col .col {
    flex: 1 1 100%;
  }
}


#left-col {
  p:first-of-type {
    margin-top: 0;
  }

  h2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .direction-buttons {
    margin-top: 0;

    a {
      text-decoration: none;
      font-size: 1.1rem;
    }
  }

  ul.program-days {
    list-style: none;
    padding-left: 0;
    margin-left: 0;

    li {
      margin-bottom: 0.5em;
    }
  }
}

#map {
  width: 100%;
  height: 500px;
  border: 0;
  margin: 0;
}

.sticky {
  position: sticky;
  top: 3rem;
}

.leaflet-ctrl-zoom-hint {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.3;
  max-width: 200px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.leaflet-popup-content {
  min-width: 200px;
  font-size: 1rem;
}

.popup-program {
  h5 {
    margin: 0 0 3px 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;

    i {
      margin-right: 5px;
      color: #d9534f;
      /* red map pin color */
    }
  }

  h6 {
    margin: 5px 0 5px 0;
    font-size: 1rem;
    font-weight: 500;
  }

  p {
    margin: 8px 0 !important;
  }

  a {
    color: #0073aa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;

    i {
      font-size: 0.9em;
    }

    &&:hover {
      text-decoration: underline;
    }
  }
}
