/**
 * The Sun Style News Feed - CSS Stilleri
 * Modern, responsive ve hover efektli tasarım
 */

/* ============================================
   GENEL CONTAINER
   ============================================ */
.thesun-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.thesun-no-posts {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

/* ============================================
   BÖLÜM AYARLARI
   ============================================ */
.thesun-section {
    margin-bottom: 30px;
}

/* ============================================
   BÖLÜM 1 - FEATURED POST + 3 KÜÇÜK GRID
   ============================================ */
.thesun-section-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Post (Büyük overlay görsel) */
.thesun-featured-post {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thesun-featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thesun-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.thesun-featured-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.thesun-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: white;
}

.thesun-featured-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
    color: white;
    transition: color 0.3s ease;
}

.thesun-featured-post:hover .thesun-featured-title {
    color: #ffd700;
}

/* Küçük Grid (3 post yan yana) */
.thesun-small-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.thesun-small-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thesun-small-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thesun-small-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.thesun-small-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.thesun-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thesun-small-post:hover .thesun-small-image img {
    transform: scale(1.05);
}

/* Küçük postlarda kategoriyi resmin üzerine koy */
.thesun-small-post .thesun-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 10;
    margin-bottom: 0;
    color: #222;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.thesun-small-content {
    padding: 20px;
}

.thesun-small-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
    color: #222;
    transition: color 0.3s ease;
}

.thesun-small-post:hover .thesun-small-title {
    color: #e02020;
}

/* ============================================
   BÖLÜM 2 - SOL BÜYÜK + SAĞ 3 KÜÇÜK
   ============================================ */
.thesun-section-2 {
    margin-bottom: 30px;
}

.thesun-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Sol Taraf - Büyük Post */
.thesun-split-left {
    display: flex;
}

.thesun-large-post {
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thesun-large-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thesun-large-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.thesun-large-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.thesun-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thesun-large-post:hover .thesun-large-image img {
    transform: scale(1.05);
}

/* Büyük postlarda kategoriyi resmin üzerine koy */
.thesun-large-post .thesun-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    margin-bottom: 0;
    color: #222;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.thesun-large-content {
    padding: 25px;
}

.thesun-large-title {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
    color: #222;
    transition: color 0.3s ease;
}

.thesun-large-post:hover .thesun-large-title {
    color: #e02020;
}

/* Sağ Taraf - 3 Küçük Post (Liste halinde) */
.thesun-split-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thesun-side-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thesun-side-post:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.thesun-side-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.thesun-side-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.thesun-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thesun-side-post:hover .thesun-side-image img {
    transform: scale(1.1);
}

.thesun-side-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.thesun-side-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
    color: #222;
    transition: color 0.3s ease;
}

.thesun-side-post:hover .thesun-side-title {
    color: #e02020;
}

/* ============================================
   ORTAK ELEMANLAR - KATEGORİ, META, EXCERPT
   ============================================ */

/* Kategori Badge */
.thesun-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #333;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.thesun-category:hover {
    transform: scale(1.05);
}

.thesun-category i.fa-play {
    font-size: 9px;
}

/* Excerpt (Açıklama metni) */
.thesun-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 10px 0;
}

/* Featured overlay'deki kategori için özel stil */
.thesun-featured-overlay .thesun-category {
    color: #222;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE TASARIM - MOBİL UYUMLU
   ============================================ */

/* Tablet (768px altı) */
@media screen and (max-width: 768px) {
    .thesun-news-container {
        padding: 15px;
    }
    
    /* Featured post yüksekliğini azalt */
    .thesun-featured-image {
        height: 350px;
    }
    
    .thesun-featured-title {
        font-size: 24px;
    }
    
    .thesun-featured-overlay {
        padding: 20px;
    }
    
    /* Küçük grid'i 2 sütuna düşür */
    .thesun-small-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Split layout'u tek sütun yap */
    .thesun-split-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .thesun-large-image {
        height: 250px;
    }
    
    .thesun-large-title {
        font-size: 20px;
    }
}

/* Mobil (480px altı) */
@media screen and (max-width: 480px) {
    .thesun-news-container {
        padding: 10px;
    }
    
    /* Featured post daha küçük */
    .thesun-featured-image {
        height: 280px;
    }
    
    .thesun-featured-title {
        font-size: 20px;
    }
    
    .thesun-featured-overlay {
        padding: 15px;
    }
    
    /* Küçük grid'i tek sütun yap */
    .thesun-small-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .thesun-small-image {
        height: 180px;
    }
    
    .thesun-small-content {
        padding: 15px;
    }
    
    /* Yan postları daha kompakt yap */
    .thesun-side-image {
        width: 120px;
        height: 120px;
    }
    
    .thesun-side-content {
        padding: 12px;
    }
    
    .thesun-side-title {
        font-size: 14px;
    }
    
    .thesun-excerpt {
        font-size: 13px;
    }
    
    /* Büyük post */
    .thesun-large-image {
        height: 200px;
    }
    
    .thesun-large-content {
        padding: 15px;
    }
    
    .thesun-large-title {
        font-size: 18px;
    }
}

/* ============================================
   EK HOVER EFEKTLERİ VE ANİMASYONLAR
   ============================================ */

/* Smooth transitions için genel ayar */
* {
    box-sizing: border-box;
}

/* Link'lerin altını çiz */
a.thesun-featured-link,
a.thesun-small-link,
a.thesun-large-link,
a.thesun-side-link {
    transition: opacity 0.2s ease;
}

/* Play ikonu animasyonu */
.thesun-category:hover i.fa-play {
    animation: playPulse 0.6s ease-in-out;
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* ============================================
   DARK MODE DESTEĞİ (Opsiyonel)
   ============================================ */
@media (prefers-color-scheme: dark) {
    .thesun-small-post,
    .thesun-large-post,
    .thesun-side-post {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .thesun-small-title,
    .thesun-large-title,
    .thesun-side-title {
        color: #ffffff;
    }
    
    .thesun-excerpt {
        color: #b0b0b0;
    }
    
    .thesun-meta {
        color: #999;
    }
}

