.service-help-block__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-help-block__title {
  margin: 0;
  color: var(--color-heading);
}

.service-help-block__content {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
  align-items: stretch;
}

.service-help-block__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  padding-right: 24px;
}

.service-help-block__intro,
.service-help-block__point-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
}

.service-help-block__intro {
  margin: 0;
  color: var(--color-primary-text);
}

.service-help-block__points-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-help-block__points-title {
  margin: 0;
  font-size: var(--fz-h4);
  line-height: var(--lh-h4);
  color: var(--color-primary-text);
}

.service-help-block__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-help-block__point {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-help-block__point-icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 32px;
}

.service-help-block__point--negative .service-help-block__point-icon::before,
.service-help-block__point--negative .service-help-block__point-icon::after,
.service-help-block__point--positive .service-help-block__point-icon::before,
.service-help-block__point--positive .service-help-block__point-icon::after,
.service-help-block__point--neutral .service-help-block__point-icon::before {
  content: "";
  position: absolute;
}

.service-help-block__point--negative .service-help-block__point-icon::before,
.service-help-block__point--negative .service-help-block__point-icon::after {
  top: 50%;
  left: 1px;
  width: 14px;
  height: 2px;
  background-color: #d66e6e;
}

.service-help-block__point--negative .service-help-block__point-icon::before {
  transform: rotate(45deg);
}

.service-help-block__point--negative .service-help-block__point-icon::after {
  transform: rotate(-45deg);
}

.service-help-block__point--positive .service-help-block__point-icon::before {
  top: 17px;
  left: 1px;
  width: 6px;
  height: 2px;
  background-color: #86b05d;
  transform: rotate(45deg);
}

.service-help-block__point--positive .service-help-block__point-icon::after {
  top: 15px;
  left: 5px;
  width: 10px;
  height: 2px;
  background-color: #86b05d;
  transform: rotate(-45deg);
}

.service-help-block__point--neutral .service-help-block__point-icon::before {
  top: 16px;
  left: 1px;
  width: 14px;
  height: 2px;
  background-color: var(--color-accent);
}

.service-help-block__point-text {
  color: var(--color-secondary-text);
}

.service-help-block__summary {
  margin: 0;
  font-size: var(--fz-h3);
  line-height: var(--lh-h3);
  color: var(--color-primary-text);
}

.service-help-block__media {
  position: relative;
  height: 100%;
  min-height: 592px;
}

.service-help-block__image {
  width: 100%;
  height: 100%;
  min-height: 592px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.service-help-block__quote {
  position: absolute;
  left: 24px;
  bottom: -40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 512px;
  padding: 32px;
  margin: 0;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.service-help-block__quote-icon {
  width: 50px;
  height: 32px;
}

.service-help-block__quote-text {
  margin: 0;
  font-size: var(--fz-quote);
  line-height: var(--lh-quote);
  color: var(--color-primary-text);
}

@media (max-width: 1199.98px) {
  .service-help-block__text {
    padding-right: 0;
  }

  .service-help-block__media {
    min-height: auto;
  }

  .service-help-block__image {
    min-height: auto;
    aspect-ratio: 780 / 592;
  }

  .service-help-block__quote {
    position: static;
    margin-top: 20px;
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .service-help-block__inner {
    gap: 20px;
  }

  .service-help-block__text {
    gap: 24px;
  }

  .service-help-block__title {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.2;
  }

  .service-help-block__quote {
    padding: 20px;
  }
}
