.coverletter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  gap: 50px;
}

.features {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.feature-item {
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
}

.feature-item h3 {
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 0 0 8px;
}

.feature-item p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.coverletter-preview {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  min-width: 300px;
  margin-top: 20px;
}
.feedback-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    width: 100%;
    height: 100%;
    max-height: 847px;
    opacity: 0.85;
    background: linear-gradient(182deg, #FFF 2.63%, var(--blue-gradient) 128.92%);
    background-size: cover;
}

.tp-section.grey-bg::after {
    top: -25px;
    width: 410px;
    right: -260px;
    height: 453px;
    background: radial-gradient(60% 60% at 60% 50%, #97ECA3 0%, rgba(151, 236, 163, 0) 100%);
}

@media (min-width: 768px) {
  .feature-item .icon {
    width: 80px;
  }

  .content-wrap {
    width: calc(100% - 105px);
  }

  .coverletter-section {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .coverletter-section {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .coverletter-section {
    flex-direction: column;
    text-align: center;
    padding: 0;
    margin: 0;
    gap: 0;
  }

  .coverletter-preview {
    margin-top: 24px;
  }

  .feature-item {
    flex-direction: column;
    margin: 0 0 24px;
    max-width: 315px;
  }

  .feature-item h3 {
    font-size: 2.4rem;
    line-height: 2.9rem;
  }
}