.whitepaperteaser-block {
    display: flex;
    gap: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.whitepaperteaser-block .thumbnail {
    transform: rotate(-7deg) translateY(15px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    border-radius: 5px;
    overflow: hidden;
    max-width: 270px;
    width: 50%;
}

.whitepaperteaser-block .thumbnail img {
    width: 100% !important;
}

.whitepaperteaser-block .teaser-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .whitepaperteaser-block {
        display: block;
    }
    .whitepaperteaser-block .thumbnail {
        transform: rotate(0deg) translateY(0);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
        border-radius: 5px;
        overflow: hidden;
        max-width: calc(50% - 0px);
        width: 100%;
        margin-bottom: 30px;
    }
}