.course-case {
  padding: 40px 0 20px;
}
.course-case__title {
  margin-bottom: 20px;
}
.course-case__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.course-case__items .item {
  position: relative;
  width: calc(50% - 5px);
  min-height: 160px;
  padding: 18px 20px 20px 95px;
  background: var(--grey);
  border-radius: 20px;
  letter-spacing: -0.03em;
}
.course-case__items .item__title {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 0.88;
}
.course-case__items .item__text {
  font-size: 16px;
  color: #787878;
  line-height: 1.25;
}
.course-case__items .item__icon {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 65px;
  height: 60px;
  background: center/contain no-repeat;
}

@media only screen and (max-width: 1199px) {
  .course-case__items .item {
    padding-left: 75px;
  }
  .course-case__items .item__title {
    font-size: 24px;
  }
  .course-case__items .item__icon {
    left: 15px;
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 760px) {
  .course-case {
    padding: 20px 0;
  }
  .course-case__items {
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
    background: var(--grey);
    border-radius: 20px;
  }
  .course-case__items .item {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    background: transparent;
  }
  .course-case__items .item__title {
    line-height: 1.08;
  }
  .course-case__items .item__text {
    line-height: 1.21;
    letter-spacing: -0.04em;
    font-size: 14px;
  }
}
