/* ---------- Top Info Banner ---------- */
.banner-top {
  --banner-top-height: 120px;
  background: #000;
  color: #fff;
  padding: clamp(10px, 2vw, 18px) 15px;
  border-bottom: 4px solid #222;
  width: 100%;
  position: relative;
  z-index: 3;
}

/* ---------- Heading ---------- */
.banner-heading-wrapper {
  text-align: center;
  margin-bottom: clamp(6px, 1.5vw, 12px);
}

.banner-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: bold;
  text-transform: uppercase;
}

/* ---------- Sections Container ---------- */
.banner-sections {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 32px);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Each Section ---------- */
.banner-section {
  flex: 1 1 240px;
  background: #222;
  padding: clamp(6px, 1vw, 12px);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,255,255,0.15);
  min-width: 220px;
  max-width: 320px;
}

.banner-section h4 {
  margin-bottom: clamp(4px,1vw,6px);
  font-size: clamp(0.9rem,1.8vw,1.1rem);
  color: #ffda44;
}

.banner-section a {
  color: #fff;
  text-decoration: underline;
  font-size: clamp(0.8rem,1.5vw,0.95rem);
}
.banner-section a:hover {
  color: #ffda44;
}

.banner-address {
  font-style: normal;
  line-height: 1.4;
  font-size: clamp(0.8rem,1.5vw,0.95rem);
}

/* ---------- Mobile: Scrollable Inline Sections ---------- */
@media (max-width: 700px) {
  .banner-top {
    --banner-top-height: auto; /* allow flexible height */
  }
  
  .banner-sections {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 6px;
  }

  .banner-section {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 300px;
    scroll-snap-align: start;
    white-space: normal;
  }

  .banner-sections::-webkit-scrollbar {
    height: 6px;
  }
  .banner-sections::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
  }
  .banner-sections::-webkit-scrollbar-thumb:hover {
    background: #777;
  }
}
