.services-explanation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 10px;
  gap: 10px;
  align-self: stretch;
  box-sizing: border-box;
}

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

.services-explanation__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background-color: #E8E6D4;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
}

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

.services-explanation__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-explanation__desc {
  align-self: stretch;
  color: #18383C;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.services-explanation__desc p {
  margin: 0 0 10px;
  padding: 0;
}

.single-service-btn {
  display: flex;
  padding: 21px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.services-explanation__right {
  align-self: stretch;
  border-radius: 8px;
  overflow: hidden;
  background: lightgray center / cover no-repeat;
}

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

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

  .services-explanation__wrapper {
    flex-direction: row;
    margin: 0 auto;
    gap: 10px;
  }

  .services-explanation__left {
    padding: 30px;
    max-width: 575px;
    width: 100%;
    gap: 30px;
  }

  .services-explanation__heading {
    font-size: 40px;
    width: 515px;
    margin-bottom: 20px;
  }

  .services-explanation__heading .highlighted {
    font-size: 40px;
    font-style: normal;
  }

  .services-explanation__desc {
    font-size: 16px;
    width: 515px;
    margin-bottom: 30px;
  }

  .single-service-btn {
    align-self: flex-start;
  }

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

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