/* ── Walk-In Banner ───────────────────────────────────────────────────────── */

.banner-walkin {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-walkin-banner);
}

.banner-walkin__media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-walkin__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.banner-walkin__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.1;
  z-index: 2;
}

.banner-walkin__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 20px 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.banner-walkin__heading {
  color: var(--color-walkin-heading);
  font-size: 56px;
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 700;
}

.banner-walkin__subheading {
  color: var(--color-walkin-subheading);
  font-size: 26px;
  margin: 0 0 30px;
  line-height: 1.5;
}

.banner-walkin__cta {
  display: inline-block;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media screen and (max-width: 749px) {
  .banner-walkin {
    min-height: 250px;
  }

  .banner-walkin__heading {
    font-size: 32px;
  }

  .banner-walkin__subheading {
    font-size: 24px;
  }

  .banner-walkin__content {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 750px) {
}
