/* ═══════════════════════════════════════════════════════════
   SPONSOR — LANDSCAPE
   Transparente, vetëm marquee (sipër) + ikona (poshtë).
   Hyn nga e majta në të djathtë. Largohet me scroll ose klik.
═══════════════════════════════════════════════════════════ */

/* Aktiv vetëm në landscape mobile (≤1024px + orientation:landscape) */
@media only screen and (min-width: 1025px),
       only screen and (orientation: portrait) {
    .sp-l-wrapper { display: none !important; }
}

@media only screen and (orientation: landscape) and (max-width: 1024px) {

    .box { position: relative; }

    .sp-l-wrapper {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 50;
        overflow: hidden;
    }

    .sp-l {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        transform: translateX(-110%);
        transition: transform 0.4s ease;
        pointer-events: none;
        will-change: transform;
    }
    .sp-l-wrapper.aktiv .sp-l {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* ── Marquee (sipër) ── */
    .sp-l-marquee {
        overflow: hidden;
        display: flex;
        align-items: center;
        width: 100%;
    }
    .sp-l-mq-run {
        white-space: nowrap;
        font-weight: 600;
        animation-name: sp-l-mq;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        padding-left: 100%;
    }
    @keyframes sp-l-mq {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

    /* ── Ikona (poshtë marquee-t) ── */
    .sp-l-ikona {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .sp-l-ikona::-webkit-scrollbar { display: none; }
    .sp-l-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        flex-shrink: 0;
    }
    .sp-l-ik {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }
    .sp-l-ik img {
        border-radius: 4px;
        display: block;
    }
}