.banners {
  margin: 40px auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.banner {
  flex: 1 0 40%;
  height: 260px;
  background: var(--text-4);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease-in-out;
}

.banner:hover img {
  transform: scale(1.3);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.banner-text {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--white);
  ;
}

.badge {
  background: var(--helper);
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.phone {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--helper);
  padding: 5px 10px;
  font-size: 14px;
}