/* Ortalanmış 1245px içeriğe göre reklam yerleşimi */
.fixed-ad {
    position: fixed;
    top: 170px;
    width: 200px;
    height: 600px;
    z-index: 1;
}

.fixed-ad img {
    width: 200px;
    height: 600px;
    object-fit: cover;
    display: block;
    border: 1px solid #eee;
}

/* Sol reklam */
.fixed-ad-left {
    left: calc(50% - 622.5px - 250px);
}

/* Sağ reklam */
.fixed-ad-right {
    right: calc(50% - 622.5px - 250px);
}

/* Mobil ve tablette reklamları gizle */
@media (max-width: 1245px) {
    .fixed-ad {
        display: none;
    }
}
