/* Section ad row */

.section-ad-row {
    align-self: stretch;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 36px;
    display: flex;
    box-sizing: border-box;
}

.section-ad-banner {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    height: 94px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    background: #1A1A1A;
}

.section-ad-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .section-ad-row {
        flex-direction: column;
        gap: 10px;
    }

    .section-ad-banner {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 758 / 94;
        border-radius: 6px;
    }
}
