.vb-home-about {
  background: linear-gradient(90deg, #e9d7d0 0%, #7f6252 100%);
  padding: 0px 20px;
}

.vb-home-about__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.vb-home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  gap: 96px;
}

.vb-home-about__content {
  padding: 80px 0px;
}

.vb-home-about__title {
  margin: 0 0 48px;
  font-size: 40px;
  line-height: 100%;
  font-weight: 500;
  color: #4b3f3b;
  letter-spacing: -0.02em;
}

.vb-home-about__title-main,
.vb-home-about__title-highlight {
  display: inline;
}

.vb-home-about__title-highlight {
  color: #fff;
}

.vb-home-about__description {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 150%;
  color: #4b3f3b;
}

.vb-home-about__description p {
  margin: 0 0 14px;
}

.vb-home-about__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.vb-home-about__card {
  padding: 20px 10px;
  border-radius: 20px;
  background: rgba(192, 162, 152, 0.8);
  text-align: center;
  color: #fff;
}

.vb-home-about__card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.vb-home-about__card-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.vb-home-about__card-text {
  font-size: 15px;
  line-height: 130%;
  font-weight: 400;
}

.vb-home-about__button-wrap {
  margin-top: 0;
}

.vb-home-about__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 1px solid #4b3f3b;
  border-radius: 100px;
  background: transparent;
  color: #4b3f3b;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.vb-home-about__button:hover {
  background: #4b3f3b;
  color: #fff;
  border-color: #4b3f3b;
}

.vb-home-about__media {
  position: relative;
  min-height: 100%;
}

.vb-home-about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 1100px) {
  .vb-home-about__content {
    padding: 40px 14px;
  }
  .vb-home-about__grid {
    gap: 20px;
  }
  .vb-home-about__title {
    font-size: 28px;
  }

  .vb-home-about__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .vb-home-about {
    padding: 0 0 0px;
  }

  .vb-home-about__inner {
    padding: 0px 0px;
  }

  .vb-home-about__grid {
    grid-template-columns: 1fr;
  }

  .vb-home-about__content {
    padding: 32px 14px 0px 14px;
  }

  .vb-home-about__title {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.05;
  }

  .vb-home-about__title-main,
  .vb-home-about__title-highlight {
    display: block;
  }

  .vb-home-about__description {
    max-width: none;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  .vb-home-about__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .vb-home-about__card {
    padding: 20px 10px;
    border-radius: 18px;
    border: 1px solid rgba(246, 240, 238, 0.29);
  }

  .vb-home-about__card-text {
    font-size: 15px;
    line-height: 1.35;
  }

  .vb-home-about__button-wrap {
    margin-bottom: 16px;
  }

  .vb-home-about__button {
    display: flex;
    width: 100%;
    padding: 14px 18px;
  }

  .vb-home-about__media {
    min-height: auto;
  }

  .vb-home-about__image {
    aspect-ratio: 1 / 1.18;
  }
}
