/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-course-image-text {
  display: flex;
  padding: 2rem 0;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1025px) {
  .c-course-image-text {
    flex-direction: row;
    padding: 3.75rem 0rem;
    gap: 3.75rem;
  }
}

@media (min-width: 1025px) {
  .c-course-image-text__media {
    width: 100%;
    max-width: 39.31rem;
  }
}

.c-course-image-text__media img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.c-course-image-text__content {
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 1025px) {
  .c-course-image-text__content {
    width: calc(100% - 2.25rem);
    padding-right: 2.25rem;
    text-align: left;
  }
}
@media (min-width: 1400px) {
  .c-course-image-text__content {
    line-height: 1.6;
  }
}

.c-course-image-text__content p + p {
  margin-top: 1rem;
}
@media (min-width: 1025px) {
  .c-course-image-text__content p + p {
    margin-top: 1.125rem;
  }
}

.c-course-image-text__heading {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 0.75rem;
}
@media (min-width: 1025px) {
  .c-course-image-text__heading {
    font-weight: 600;
    line-height: 1.4;
  }
}
@media (min-width: 1400px) {
  .c-course-image-text__heading {
    font-size: 1.875rem;
    padding-bottom: 1.125rem;
  }
}

.c-course-image-text__content ul {
  text-align: left;
  list-style: none;
  margin-top: 1.125rem;
  padding-left: 0;
}

.c-course-image-text__content ul li {
  padding-left: 2.25rem;
  position: relative;
}

.c-course-image-text__content ul li::before {
  content: url("../../img/icon_check-outline.svg");
  position: absolute;
  left: 0;
}

.c-course-image-text__content ul li:not(:last-child) {
  margin-bottom: 0.75rem;
}
