/**
 * Ana sayfa yan reklam alanları — yalnızca ≥1520px masaüstü.
 * .home-layout genişliğine dokunmaz; reklamlar viewport dış boşluğunda fixed konumlanır.
 */

.page-home .home-ad-rail {
    display: none;
}

@media (min-width: 1520px) {
    .page-home .home-ad-rail {
        display: block;
        position: fixed;
        top: calc(var(--ry-header-h, 80px) + 16px);
        width: 160px;
        height: 600px;
        z-index: 40;
        pointer-events: auto;
    }

    .page-home .home-ad-rail--left {
        left: max(8px, calc((100vw - 1280px) / 2 - 172px));
    }

    .page-home .home-ad-rail--right {
        right: max(8px, calc((100vw - 1280px) / 2 - 172px));
    }

    .page-home .home-ad-rail__slot,
    .page-home .home-ad-rail__link {
        display: block;
        width: 160px;
        height: 600px;
        overflow: hidden;
        border-radius: 4px;
        line-height: 0;
    }

    .page-home .home-ad-rail__link {
        text-decoration: none;
    }

    .page-home .home-ad-rail__img {
        display: block;
        width: 160px;
        height: 600px;
        max-width: 160px;
        max-height: 600px;
        object-fit: cover;
        object-position: center center;
    }
}
