/* Sidebar Reklam Alanı Stilleri */

/* Sol Taraf Reklam Alanı */
.left-sidebar-ads-container {
    position: fixed;
    left: calc(50% - 760px); /* Merkeze göre dinamik pozisyon (1200px/2 + 160px + 0px boşluk) */
    top: 149px;
    width: 160px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-sidebar-ads-container .ad-box {
    width: 100%;
}

/* Sağ Taraf Reklam Alanı */
.sidebar-ads-container {
    position: fixed;
    right: calc(50% - 760px); /* Merkeze göre dinamik pozisyon (1200px/2 + 160px + 0px boşluk) */
    top: 151px;
    width: 160px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-ads-container .ad-box {
    width: 100%;
}

/* Tablet ve altında reklamları gizle */
@media (max-width: 1500px) {
    .left-sidebar-ads-container,
    .sidebar-ads-container {
        display: none;
    }
}

.sidebar-ad-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-ad-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.sidebar-ad-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.sidebar-ad-image {
    transition: transform 0.3s ease;
}

.sidebar-ad-link:hover .sidebar-ad-image {
    transform: scale(1.05);
}



/* ============================================
   SON DAKİKA ALTI REKLAM ALANI
   ============================================ */
.breaking-news-ad-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 20px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.breaking-news-ad-wrapper {
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.breaking-news-ad-wrapper:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.breaking-news-ad-link {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.breaking-news-ad-image {
    transition: opacity 0.3s ease;
}

.breaking-news-ad-link:hover .breaking-news-ad-image {
    opacity: 0.95;
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .breaking-news-ad-container {
        margin-bottom: 10px;
    }

    .breaking-news-ad-wrapper {
        min-height: 60px;
    }
}


/* ============================================
   HABER İÇİ BAŞLIK ALTI BANNER REKLAM ALANI
   ============================================ */
.news-detail-title-banner-ad-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto 20px;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

.news-detail-title-banner-ad-wrapper {
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.news-detail-title-banner-ad-wrapper:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.news-detail-title-banner-ad-link {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.news-detail-title-banner-ad-image {
    transition: opacity 0.3s ease;
}

.news-detail-title-banner-ad-link:hover .news-detail-title-banner-ad-image {
    opacity: 0.95;
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .news-detail-title-banner-ad-container {
        margin-bottom: 10px;
    }

    .news-detail-title-banner-ad-wrapper {
        min-height: 60px;
    }
}

