
/* Teaser CSS Start */
.teaser-wrapper {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 1.875rem;
}

@media(min-width: 1024px) {
    .teaser-wrapper {
        padding-top: 4.0625rem;
        padding-bottom: 4.0625rem;
        margin-bottom: 0;
    }
}

.teaser-main {
    position: relative;
}

.teaser-main::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 10rem;
    width: 100%;
    height: 38.813rem;
    background-color: var(--light-blue);
    z-index: 1;
}

@media(min-width: 1024px) {
    .teaser-main::before {
        height: 19.813rem;
        top: 50%;
        transform: translateY(-50%);
    }
}
.teaser-main .row {
    z-index: 2;
    position: relative;
}

.teaser-info {
    padding: 1.5rem 1.5rem 4.375rem 1.5rem;
    background-color: var(--light-blue);
}

@media(min-width: 992px) {
    .teaser-info {
        padding: 1.5rem;
    }
}

@media(min-width: 1200px) {
    .teaser-info {
        padding: 1.875rem 3.125rem 1.875rem 0;
    }
}

@media(min-width:1366px ) {
    .teaser-info {
        padding: 2.125rem 4.375rem 2.125rem 0;
    }
}

.teaser-info p {
    font-family: var(--zf);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5rem;
    margin-top: 1.5rem;
    hyphens: auto;
}

.teaser-info .btn-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.1875rem;
    align-items: flex-start;
    margin-top: 1.5625rem;
}

@media(min-width: 768px) {
    .teaser-info .btn-wrapper {
        flex-direction: row;
        margin-top: 2.5rem;
    }
}

.teaser-info .btn-wrapper a {
    display: block;
    min-width: 13.125rem;
}
/* Teaser CSS End */
.teaser-info h2, .teaser-info .h2 {
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.teaser-info p{
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
 }