.small-banner {
  background: url("images/small-banner.jpg") center/cover no-repeat;
  border-radius: 16px;
  color: var(--white);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: clamp(2rem, 3vw, 3rem) clamp(1rem, 4vw, 4rem);
}

.small-banner__title.block__title {
  color: var(--white);
}
.small-banner__text.block__text {
  color: var(--white);
  max-width: 768px;
}
.small-banner__btn {
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .small-banner {
    flex-direction: column;
  }
  .small-banner__title.block__title, .small-banner__text.block__text {
    text-align: center;
  }
}