/* Společné styly pro label reklamy */
.sq-ad-label,
.sq-ad-name {
    text-align: right;
    margin: 0;
}

.sq-ad-name {
    font-size: 12px;
}

/* Sticky wrapper - pouze na desktopu */
@media (min-width: 1024px) {
    .sq-ad-sticky-wrapper {
        display: flex;
        flex-direction: column;
    }

    .sq-ad-sticky-content {
        position: sticky;
        top: var(--sq-ad-sticky-top, 0px);
        align-self: flex-start;
        width: 100%;
    }

    .sq-ad-sticky-spacer {
        flex: 1;
        min-height: calc(100vh);
    }

    /* Techzpravy Gamepress: pozici řídí JS */
    .sq-ad-sticky-fixed-mode .sq-ad-sticky-content {
        position: static;
    }

    .sq-ad-sticky-placeholder {
        width: 100%;
        height: 0;
        flex-shrink: 0;
    }
}

/* Na tabletu a mobilu - sticky nefunguje, zobrazí se normálně */
@media (max-width: 1023px) {
    .sq-ad-sticky-wrapper {
        display: block;
    }

    .sq-ad-sticky-content {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
    }

    .sq-ad-sticky-spacer,
    .sq-ad-sticky-placeholder {
        display: none;
    }
}
