.lhb3 { 
	margin: 0px;
}
.lhb3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lhb3__item {
  position: relative;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: none;
}
.lhb3__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  transform: scale(1);
  z-index: 0;
}
.lhb3__item {
  --bg: none;
}
.lhb3__item::before {
  background-image: var(--bg);
}

/* эффект */
.lhb3__item:hover::before {
  transform: scale(1.08);
}

/* чтобы текст был сверху */
.lhb3__overlay {
  position: relative;
  z-index: 2;
}
.lhb3__overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lhb3__kicker {
  display: inline-block;
  align-self: flex-start;
  background: #fed700;
  padding: 8px 25px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 5px;
}

.lhb3__title {
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 600;
  max-width: 50%;
}

.lhb3__btn {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 14px;
  color: black;
  transition: 0.3s;
  width: 80px;
}
.lhb3__btn:hover {
	color: #fed700;
}
@media (max-width: 991px) {
  .lhb3__grid { grid-template-columns: 1fr; }
  .lhb3__title { max-width: 60%; font-size: 22px; }
}
