.ad2n-marquee-section {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    contain: layout paint;
    background: #070c1d;
}

.ad2n-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 22px 0;
    color: #ffffff;
    background: #070c1d;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad2n-marquee::before,
.ad2n-marquee::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: clamp(24px, 7vw, 120px);
    pointer-events: none;
}

.ad2n-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #070c1d, transparent);
}

.ad2n-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #070c1d, transparent);
}

.ad2n-marquee__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.ad2n-marquee__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.ad2n-marquee__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.ad2n-marquee__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    color: #d50b52;
    font-size: 1.15rem;
    line-height: 1;
    text-shadow: 0 0 14px rgba(213, 11, 82, 0.65);
}

@media (max-width: 767px) {
    .ad2n-marquee {
        padding: 16px 0;
    }

    .ad2n-marquee__item {
        font-size: 0.95rem;
        letter-spacing: 1.35px;
    }

    .ad2n-marquee__badge {
        margin: 0 18px;
        font-size: 0.95rem;
    }
}
