/* ═══════════════════════════════════════════════════════════
   SPONSOR — DESKTOP
   Shirit global, gjerësia e plotë e ekranit, zbret 1/4 nga lart.
   Përmban kolona (një për çdo post të rreshtit të sipërm).
═══════════════════════════════════════════════════════════ */

/* Aktiv vetëm në desktop (≥1025px) */
@media only screen and (max-width: 1024px) {
    #sp-d-bar { display: none !important; }
}

@media only screen and (min-width: 1025px) {

    #sp-d-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 25vh;              /* 1/4 e ekranit (spec #14) */
        max-height: 25vh;
        z-index: 999998;           /* nën overlay-in fullscreen (999999) */
        transform: translateY(-100%);
        transition: transform 0.35s ease;
        pointer-events: none;
        overflow: hidden;
        will-change: transform;
        background: transparent;
    }
    #sp-d-bar.aktiv {
        transform: translateY(0);
        pointer-events: auto;
    }

    .sp-d-bar-inner {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 100%;
    }

    .sp-d-col {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* ── Blloku i madh ── */
    .sp-d-bllok {
        position: relative;
        overflow: hidden;
        width: 100%;
        flex-shrink: 0;
    }
    .sp-d-bllok .sp-d-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sp-d-bllok-tekst {
        position: relative;
        z-index: 2;
        color: #fff;
        text-align: center;
        padding: 12px 16px;
        font-size: clamp(1rem, 1.4vw, 1.3rem);
        font-weight: 600;
        text-shadow: 0 1px 4px rgba(0,0,0,0.7);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    /* ── Ikona ── */
    .sp-d-ikona {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 12px;
        overflow: hidden;
        flex-shrink: 0;
    }
    .sp-d-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-d-ik {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }
    .sp-d-ik img {
        border-radius: 4px;
        display: block;
    }
}
