/* Teaser Box CSS Start */
.teaser-box {
    padding-top: 1.5rem;
    padding-bottom: 2.25rem;
    padding-left: 1.625rem;
    padding-right: 1.625rem;
}

@media(min-width:992px) {
    .teaser-box {
        padding-top: 1.875rem;
        padding-bottom: 2.125rem;
    }
}

.teaser-box .card {
    text-decoration: none;
    display: block;
    border-radius: 0;
    border: 0;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.1);
    height: 100%;
}

.teaser-box .card img {
    border-radius: 0;
    object-fit: cover;
    aspect-ratio: 1.34 / 1;
}

@media(min-width:768px) {
    .teaser-box .card img {
        height: 15.875rem;
    }
}

.teaser-box .card-body {
    padding: 2.25rem 1.625rem 1.75rem;
    align-items: flex-start;
}

.teaser-box .card-body .card-title {
    font-family: var(--zf);
    font-size: 1.4375rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.teaser-box .card-body .card-text {
    font-family: var(--zf);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5rem;
    margin-top: 1rem;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    hyphens: auto;
}
/* Teaser Box CSS End */