.lernangebotcard.hooucard {
    display: flex;
    flex-direction: column;
    height: 546px;
    width: 300px;
    background-color: white;
    border-radius: 6px;
    line-height: 1;
    overflow: hidden;
    border: 1px solid var(--hoou-grau-300);
}

.lernangebotcard .hooucard-imagewrapper {
    border-bottom: 1px solid var(--hoou-hellgrau);
}

.lernangebotcard .hooucard-imagewrapper-link-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.36;
    max-height: 100%;
}

.lernangebotcard .hooucard-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.lernangebotcard .hooucard-content-tagwrapper-tags-tag {
    text-decoration: none;
    color: var(--hoou-blau);
    font-size: 12px;
    border-radius:2px;
    letter-spacing:0.3px;
    line-height: 100%;
}

.lernangebotcard .hooucard-content-tagwrapper {
    margin-bottom: 8px;
    position: relative;
    height: 22px;
}

.lernangebotcard .hooucard-content-tagwrapper-posttype {
    display: none;
}

.lernangebotcard .hooucard-content-tagwrapper-tags {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.lernangebotcard .hooucard-content-tagwrapper-tags-tag,
.lernangebotcard .hooucard-content-tagwrapper-tooltip-tag {
    text-transform: uppercase;
    padding: 5px 6px;
    border: 1px solid var(--hoou-blau);
    margin-right: 4px;
}

.lernangebotcard .hooucard-content-tagwrapper-tooltip-tag {
  line-height: 2.1em
}

.lernangebotcard .hooucard-content-tagwrapper-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: white;
    border: 1px solid var(--hoou-blau);
    border-radius: 4px;
    padding: 6px;
    margin-bottom: 6px;
    z-index: 10;
}

.lernangebotcard .hooucard-content-tagwrapper-tags:hover + .hooucard-content-tagwrapper-tooltip {
    display: block;
}

.lernangebotcard h3.hooucard-content-title {
    font-size: 16px !important;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: normal;
    text-align: left;
    color: var(--hoou-blau);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.lernangebotcard .hooucard-content-summary {
    font-size: 14px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 140%;
}

.lernangebotcard .hooucard-content-detailwrapper {
    display: flex;
    gap: 27px;
    font-size: 14px;
    line-height: 140%;
}

.lernangebotcard .hooucard-content-detailwrapper-duration {
    display: flex;
    display: none; /*delete this line to visualize duration on card*/
    align-items: center;
}

.lernangebotcard .hooucard-content-detailwrapper svg {
    margin-right:6px;
}

.lernangebotcard .hooucard-content-detailwrapper-iscertified {
    display: flex;
    align-items: center;
}

.lernangebotcard .hooucard-content-spacer {
    flex-grow: 1;
}

.lernangebotcard .hooucard-content-authors {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.lernangebotcard .hooucard-buttonmimic {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: 50px;
    border-top: 1px solid var(--hoou-hellgrau);
    text-decoration: none;
    color: var(--hoou-blau);
    padding: 0 20px;
    background-color: transparent;
}

.lernangebotcard .hooucard-buttonmimic-text {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.08px;
    text-align: right;
}

.lernangebotcard .hooucard-buttonmimic:hover {
    background-color: var(--hoou-blau);
    color: white;
}

.lernangebotcard .hooucard-buttonmimic-icon {
    position: relative;
}

.lernangebotcard .hooucard-buttonmimic:hover svg path {
    stroke: currentcolor;
}

.lernangebotcard  .hooucard-content-authors-logo img {
    height: 30px;
    width: auto;
}


@container (max-width: 674px){
    .lernangebotcard.hooucard {
        height: 571px;
        width: 100%;
        max-width: 390px;
    }
    .lernangebotcard.hooucard .hooucard-imagewrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 245px;
    }
}