/* ===== BANNER WRAPPER ===== */
.who-banner {
  background: var(--footer-bg);
  color: #fff;
  position: relative;
  overflow: visible;
}

/* INNER GRID */
.who-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}

/* LEFT TEXT */
.who-banner-text {
  font-size: 36px;
  line-height: 1.3;
  color: var(--white);
  z-index: 2;
  max-width: 500px;
  position: relative;
  z-index: 2; /* ensures text is above number */
  padding: 40px 0; /* FIXED HEIGHT */
}

/* RIGHT SIDE */
.who-banner-right {
  position: relative;
  margin-bottom: 80px;
}

.who-banner-number {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 280px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  opacity: 1;
  z-index: 100;
  pointer-events: none;
}

/* ===== MAIN SECTION ===== */
.who-main {
  padding: 60px 20px;
}

.who-heading {
  margin-bottom: 20px;
  position: relative;
}

.who-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #a00000;
  display: block;
  margin-top: 10px;
}

/* GRID */
.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}

/* TEXT */
.who-text {
  line-height: 1.8;
  color: #555;
}

/* MAP */
.who-map img {
  width: 100%;
  display: block;
}

/* BUTTON */
.who-main .btn {
  margin-top: 30px;
}

/* BOTTOM */
.who-bottom {
  margin-top: 40px;

  color: #666;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .who-banner-number {
    font-size: 280px;
    right: -20px;
  }
}
@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-banner-text {
    font-size: 28px;
  }

  .who-banner-number {
    font-size: 260px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .who-banner-number {
    font-size: 200px;
  }
}
