.vh-ad {
    box-sizing: border-box;
    width: min(100%, 1280px);
    margin: 20px auto;
    text-align: center;
}

.vh-ad__label {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vh-ad__creative {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vh-ad__creative > a {
    display: inline-flex;
    max-width: 100%;
}

.vh-ad__creative img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border: 0;
}

.vh-ad--header,
.vh-ad--footer {
    padding-right: 16px;
    padding-left: 16px;
}

.vh-ad--home_grid {
    grid-column: 1 / -1;
    margin: 8px auto 20px;
}

.vh-ad--above_player {
    margin-top: 0;
}

.vh-ad--below_player {
    margin-bottom: 24px;
}

.vh-ad--sidebar {
    width: 100%;
    margin-top: 0;
}

.vh-ad--sidebar .vh-ad__creative img {
    max-height: 600px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .vh-ad {
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .vh-ad--header,
    .vh-ad--footer {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vh-ad * {
        scroll-behavior: auto !important;
    }
}

