.home-page .hero-actions {
  align-items: stretch;
}

.home-page .hero-actions a,
.home-page .hero-actions a:nth-child(2) {
  display: block;
  width: clamp(190px, 12vw, 230px);
  aspect-ratio: 500 / 144;
}

.home-page .hero-actions img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@media (max-width: 900px) {
  .home-page .hero-actions a,
  .home-page .hero-actions a:nth-child(2) {
    width: min(240px, 100%);
  }
}

.home-page .courses-section:not(.courses-section--html) .course-image-card {
  --course-button-color: #0a47ff;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  justify-content: stretch;
  justify-items: stretch;
  height: auto;
  aspect-ratio: auto;
  padding-bottom: 12px;
  background: #fff;
}

.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(1) { --course-button-color: #f0144b; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(2) { --course-button-color: #0b7c2e; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(3) { --course-button-color: #0a47ff; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(4) { --course-button-color: #ff4e12; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(5) { --course-button-color: #5c26b8; }

.home-page .courses-section:not(.courses-section--html) .course-image-card__visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.76;
  overflow: hidden;
  background: #fff;
}

.home-page .courses-section:not(.courses-section--html) .course-image-card__visual img {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  max-width: none;
  height: 135%;
  object-fit: fill;
}

.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(2) .course-image-card__visual img { height: 124%; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(3) .course-image-card__visual img { height: 128%; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(4) .course-image-card__visual img { height: 138%; }
.home-page .courses-section:not(.courses-section--html) .course-image-card:nth-child(5) .course-image-card__visual img { height: 132%; }

.home-page .courses-section:not(.courses-section--html) .course-image-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 24px);
  min-height: 44px;
  margin: 10px 12px 0;
  padding: 8px 10px;
  border: 2px solid var(--course-button-color);
  border-radius: 5px;
  background: #fff;
  color: var(--course-button-color);
  font-size: clamp(.68rem, .62vw, .82rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
