.bwd-ads {
    box-sizing: border-box;
    display: flex;
    gap: 16px;
    width: 100%;
}

.bwd-ads--vertical {
    align-items: stretch;
    flex-direction: column;
}

.bwd-ads--horizontal {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.bwd-ad {
    box-sizing: border-box;
    display: block;
    max-width: 100%;
    width: var(--bwd-ad-width-desktop, auto);
}

.bwd-ad__link {
    display: block;
    line-height: 0;
    text-decoration: none;
}

.bwd-ad__image {
    border: 0;
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.bwd-ads--hero {
    justify-content: center;
}

.bwd-ads--hero .bwd-ad {
    width: var(--bwd-ad-width-desktop, 100%);
}

.bwd-ads--regular.bwd-ads--horizontal .bwd-ad {
    flex: 0 1 auto;
}

@media (max-width: 700px) {
    .bwd-ads--horizontal {
        align-items: stretch;
        flex-direction: column;
    }

    .bwd-ad,
    .bwd-ads--hero .bwd-ad {
        width: var(--bwd-ad-width-mobile, 100%);
    }
}
