/* ---------------- Мобилка: по умолчанию ---------------- */
.services-rec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 80px;
  gap: 20px;
  align-self: stretch;
  box-sizing: border-box;
}

.services-rec__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.services-rec__heading {
  align-self: stretch;
  color: #E8E6D4;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: clamp(24px, 4vw, 40px);
  margin: 0;
}

.services-rec__heading .highlighted {
  color: var(--color-orange);
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.services-rec__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}

.services-rec__points {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}

.services-rec__point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid rgba(232, 230, 212, 0.30);
  background: rgba(132, 168, 172, 0.10);
  box-sizing: border-box;
}

.services-rec__icon {
  display: flex;
  width: 30px;
  height: 30px;
  padding: 0;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.services-rec__num {
  color: #E8E6D4;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.services-rec__text {
  align-self: stretch;
  color: #E8E6D4;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.services-rec__image {
  align-self: stretch;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(232, 230, 212, 0.20);
  overflow: hidden;
  box-sizing: border-box;
  background: lightgray center / cover no-repeat;
}

.services-rec__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/* ---------------- Десктоп: от 1200px ---------------- */
@media (min-width: 1200px) {
  .services-rec {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0;
  }

  .services-rec__container {
    margin: 0 auto;
    gap: 30px;
  }

  .services-rec__content {
    flex-direction: row;
    gap: 10px;
  }

  .services-rec__points {
    max-width: 575px;
    gap: 10px;
  }

  .services-rec__point {
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  .services-rec__text {
    flex: 1 0 0;
    line-height: 115%;
  }

  .services-rec__image {
    width: 575px;
    height: auto;
    border: none;
    background: none;
  }

  .services-rec__image img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
}