@charset "UTF-8";

.included {
  padding: var(--sp) 0;
}

.included .section-head {
  position: relative;
  z-index: 2;
}

.included .section-head:not(:has(.section-head__subtitle)) {
  justify-content: flex-start;
  text-align: left;
}

.included .section-head__title ._row-2 {
  text-align: right;
  justify-content: flex-end;
}

.included__title {
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 24px;
}

.included__title [class*=_row-] {
  display: flex;
  gap: 60px;
}

.included__title span {
  color: var(--primary);
}

.included__slider {
  margin-bottom: 48px;
  position: relative;
}

.included__slider:before {
  background: var(--secondary);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 680px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(120px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.included__slider .swiper-slide {
  height: auto;
  background: red;
}

.included__slider .card {
  background: var(--yellow-gray-100);
  color: var(--bg);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.included__slider .card__counter {
  font: 500 var(--h3)/110% var(--heading-font-family);
  position: absolute;
  top: 12px;
  left: 12px;
  color: var(--white);
  z-index: 1;
}

.included__slider .card__photo {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  background: center/cover no-repeat;
  aspect-ratio: 1/1;
}

.included__slider .card__photo:before {
  background: var(--bg);
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  mix-blend-mode: color;
  pointer-events: none;
}

.included__slider .card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.included__slider .card__title {
  font: 500 var(--h6)/120% var(--heading-font-family);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.included__slider .card__description {
  flex: 1 1 auto;
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
  opacity: 0.7;
  margin-bottom: 8px;
  min-height: 86px;
}

.included__slider .card__bottom {
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.included__grid .item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.included__grid .item__icon {
  flex: 0 0 auto;
  aspect-ratio: 1/1;
  width: 72px;
  background: center/contain no-repeat;
}

.included__grid .item__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 135%;
}

.included__grid-not-included .item {
  grid-column: span 2;
  /* займає дві колонки */
}

@media (max-width: 1600px) {
  .included__slider:before {
    width: 586.67px;
  }
}

@media (max-width: 1260px) {
  .included__slider:before {
    width: 493.34px;
    filter: blur(120px);
  }

  .included__slider {
    margin-bottom: 32px;
  }

  .included__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included__grid .item__icon {
    width: 60px;
  }
}

@media (max-width: 760px) {
  .included .section-head__title ._row-2 {
    justify-content: center;
  }

  .included__slider:before {
    width: 400px;
    filter: blur(70px);
  }

  .included__slider .card__description {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }

  .included__slider .card__bottom {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }

  .included__grid {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }

  .included__grid .item__text {
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }
}