File: /var/www/linde-elearning/styles/layout/_card.scss
.course-card {
  display: flex;
  flex-direction: column;
  &__link {
    display: flex;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.2s ease-in-out all;
    background-color: var(--color-5);
    height: 100%;
    &:hover {
      transform: translateY(-20px);
      outline: 0;
      background-color: var(--color-4);
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    }
  }
  &__header {
    text-align: center;
    padding: 35px 20px 15px 20px;
  }
  &__subtitle {
    opacity: 0.6;
    margin-bottom: 10px;
  }
  &__title {
    margin-bottom: 15px;
    color: var(--color-2);
  }
  &__image {
    position: relative;
    overflow: hidden;
    margin-top: auto;
    img {
      width: 100%;
    }
    &-overlay {
      position: absolute;
      padding: 10px 20px;
      border-radius: 5px;
      background-color: var(--color-2);
      bottom: 10px;
      left: 10px;
      font-size: 16px;
      font-weight: 700;
      line-height: calc(25 / 16);
    }
  }
}
.card-margin {
  margin-bottom: 35px;
}