.main-section {
    padding: 30px 0;
    background-color: var(--bg-color);
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: cli;
}

    .main-section .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        width: calc(100% - 30px);
    }

    .main-section .breaking-news {
        background-color: var(--bg-color);
        padding: 10px 0;
        overflow: hidden;
        border-bottom: 1px solid var(--bg-color-dark);
    }

        .main-section .breaking-news .breaking-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            padding-left: 0;
            display: flex;
            align-items: center;
        }

            .main-section .breaking-news .breaking-container .breaking-label {
                background-color: var(--primary-color);
                color: white;
                padding: 5px 15px;
                font-weight: 600;
                font-size: 12px;
                text-transform: uppercase;
                white-space: nowrap;
                margin-right: 15px;
                border-radius: 3px;
                letter-spacing: 0.5px;
            }

        .main-section .breaking-news .breaking-news-ticker {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

            .main-section .breaking-news .breaking-news-ticker .ticker-list {
                display: flex;
                animation: ticker 20s linear infinite;
                margin: 0;
                padding: 0;
            }

            .main-section .breaking-news .breaking-news-ticker .ticker-item {
                white-space: nowrap;
                padding: 0 30px;
                color: var(--text-dark);
                font-size: 14px;
                font-weight: 600;
            }

                .main-section .breaking-news .breaking-news-ticker .ticker-item a.tag {
                    color: var(--primary-color);
                    font-size: 13px;
                    border-radius: 3px;
                    margin-right: 5px;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    font-weight: 800;
                }

                    .main-section .breaking-news .breaking-news-ticker .ticker-item a.tag:hover {
                        color: var(--primary-color-dark);
                        text-decoration: underline;
                    }

                .main-section .breaking-news .breaking-news-ticker .ticker-item a {
                    color: inherit;
                    transition: color 0.2s ease;
                }

                    .main-section .breaking-news .breaking-news-ticker .ticker-item a:hover {
                        color: var(--primary-color-dark);
                    }

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Bölüm Başlıkları */
.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    position: relative;
    padding-left: 15px;
}

    .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 24px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

/* Ana Grid Yapısı */
.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-gap: 30px;
}

/* Content Sections */
.section-primary {
    margin-top: 25px;
    margin-bottom: 30px;
}

.section-secondary {
    padding-top: 25px;
    margin-top: 0;
    border-top: 4px solid var(--bg-color-dark);
}

/* Primary Content Grid */
.primary-grid {
    display: grid;
    grid-template-columns: 1fr 320px; /* Widget genişliğini azalttık (360px -> 320px) */
    gap: 25px;
}

/* Main News Area */
.main-news-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .main-news-area .featured-news {
        position: relative;
        height: 460px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

        .main-news-area .featured-news .featured-news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .main-news-area .featured-news .featured-news-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
            color: white;
        }

        .main-news-area .featured-news .featured-news-category {
            display: inline-block;
            padding: 6px 12px;
            background-color: var(--primary-color);
            color: white;
            font-size: 12px;
            border-radius: 4px;
            margin-bottom: 12px;
        }

        .main-news-area .featured-news .featured-news-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .main-news-area .featured-news .featured-news-excerpt {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

/* Sub News Grid */
.sub-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

    .sub-news-grid .sub-news-card {
        background: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0,0,0,0.06);
        transition: transform 0.3s ease;
    }

        .sub-news-grid .sub-news-card:hover {
            transform: translateY(-3px);
        }

        .sub-news-grid .sub-news-card .sub-news-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .sub-news-grid .sub-news-card .sub-news-content {
            padding: 20px;
        }

        .sub-news-grid .sub-news-card .sub-news-category {
            font-size: 12px;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .sub-news-grid .sub-news-card .sub-news-title {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 10px;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .sub-news-grid .sub-news-card .sub-news-meta {
            font-size: 12px;
            color: var(--text-dark-low);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

/* Widgets Sidebar */
.widgets-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Widget Cards */
.widget-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg-color);
    color: var(--text-dark);
}

/* Podcast Widget */
.podcast-widget {
    background: linear-gradient(45deg, #1DB954, #191414);
    padding: 20px;
    border-radius: 8px;
    color: white;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 180px;
}

.podcast-content {
    position: relative;
    z-index: 2;
}

.podcast-logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

    .podcast-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.podcast-title {
    margin-top: -10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.podcast-desc {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.4;
}

.podcast-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #191414;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

    .podcast-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

/* Weather Widget */
.weather-widget {
    padding: 15px;
}

.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.weather-info {
    text-align: left;
}

.weather-temp {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.weather-desc {
    font-size: 13px;
    color: var(--text-dark-low);
}

.weather-icon {
    font-size: 36px;
    color: var(--primary-color);
}

.weather-details {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid var(--bg-color);
}

.weather-detail {
    text-align: center;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.detail-label {
    font-size: 11px;
    color: var(--text-dark-low);
}

/* Market Widget */
.market-widget {
    padding: 15px;
}

.market-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bg-color);
}

    .market-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.market-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.market-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.market-change {
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 12px;
}

    .market-change.up {
        background-color: rgba(52, 199, 89, 0.1);
        color: #34c759;
    }

    .market-change.down {
        background-color: rgba(255, 59, 48, 0.1);
        color: #ff3b30;
    }

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 68% 32%; /* Slider ve yan içerik bölümü için oranları ayarladık */
    grid-gap: 25px;
}

/* Tablet Slider Alanı */
.news-slider {
    grid-column: 1 / 2; /* Tüm genişliği kaplamak yerine sadece ilk kolonu kapla */
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    background-color: var(--card-bg);
    height: 400px; /* 500px'den 400px'e düşürüldü, daha kare formata yakın */
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.news-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .news-slide.active {
        opacity: 1;
    }

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .slide-image:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    }

    .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.news-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 60px);
    padding: 30px;
    z-index: 2;
    color: white;
}

.slide-category {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slide-excerpt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    max-width: 80%;
}

.slide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.slide-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-date {
    display: flex;
    align-items: center;
}

    .slide-date i {
        margin-right: 5px;
        font-size: 14px;
    }

/* Slider Controls - ESKİ (KALDIRILACAK) */
.slider-controls {
    display: none; /* Eski kontrolleri tamamen gizliyoruz */
}

.slider-dot {
    display: none;
}

.slider-arrows {
    display: none;
}

/* Yeni sayı temelli slider navigasyon */
.slider-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.slider-page {
    background-color: rgba(0, 0, 0, 0.7);
    flex: 1;
    text-align: center;
    padding: 2px 0px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-radius: 5px;
}

    .slider-page:hover {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .slider-page.active {
        color: white;
        border-bottom-color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.4);
    }

@media (max-width: 768px) {
    .slider-page {
        padding: 12px 0;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .slider-page {
        padding: 10px 0;
        font-size: 11px;
    }
}

.slider-sidebar {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(100% - 25px);
    height: 400px;
    overflow: hidden;
}

.mini-card {
    position: relative;
    height: calc(33.333% - 10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--card-bg);
    transition: transform 0.3s ease;
}

    .mini-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.mini-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .mini-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.mini-card:hover .mini-card-image img {
    transform: scale(1.05);
}

.mini-card-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.mini-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    color: white;
}

.mini-card-category {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.mini-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* News Cards Grid */
.news-cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    margin-bottom: 30px;
}

/* Haber Kartları Stilleri */
.news-card {
    background-color: var(--card-bg);
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    border-radius: 6px;
    min-height: auto;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .news-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }

        .news-card:hover .card-title {
            color: var(--primary-color);
        }

.card-image {
    height: 160px; /* Resim boyutu küçültüldü */
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0;
}

.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 15px; /* Font boyutu küçültüldü */
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    color: var(--text-dark);
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-dark-low);
    line-height: 1.5;
    margin-bottom: 10px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    border-top: none;
    padding-top: 0;
}

    .card-meta .news-source {
        font-weight: 500;
        color: var(--secondary-color);
    }

    .card-meta .news-date {
        color: var(--text-dark-low);
    }

/* Özellikli Haber Kartı */
.news-card.featured {
    display: flex;
    flex-direction: row;
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 0;
    border-bottom: none;
    height: auto;
    min-height: 0;
}

    .news-card.featured .card-image {
        flex: 0 0 50%;
        height: auto;
        max-height: 300px;
        margin-bottom: 0;
        border-radius: 0;
    }

        .news-card.featured .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

    .news-card.featured .card-content {
        flex: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-card.featured .card-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .news-card.featured .card-meta {
        padding-top: 10px;
        border-top: 1px solid var(--bg-color);
        margin-top: auto;
    }

.main-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.full-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 0;
}

.secondary-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--category-color, var(--primary-color));
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

    .section-title::before {
        display: none;
    }

.section-more {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

    .section-more:hover {
        text-decoration: underline;
    }

.news-category-label {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px; /* Font boyutu küçültüldü */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    margin-bottom: 6px;
    line-height: 1;
    position: relative;
    z-index: 2;
    width: fit-content;
}

/* Main News Grid */
.main-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-news-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-height: 220px;
    height: 100%;
}

    .main-news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.main-news-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
}

    .main-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.main-news-card:hover .main-news-image img {
    transform: scale(1.05);
}

.main-news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-news-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-news-excerpt {
    font-size: 14px;
    color: var(--text-dark-low);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 1.6;
}

.main-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-color-dark);
    padding-top: 12px;
    border-top: 1px solid var(--bg-color);
    margin-top: auto;
}

/* Full News Grid */
.full-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3'ten 4 sütuna çıkarıldı */
    gap: 25px;
    margin-top: 30px;
}

.full-news-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .full-news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.full-news-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

    .full-news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.full-news-card:hover .full-news-image img {
    transform: scale(1.05);
}

.full-news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.full-news-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-news-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.full-news-excerpt {
    font-size: 14px;
    color: var(--text-dark-low);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.full-news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--secondary-color-dark);
    padding-top: 12px;
    border-top: 1px solid var(--bg-color);
    margin-top: auto;
}

@media (max-width: 1200px) {
    .main-news-grid .news-card {
        grid-template-columns: 250px 1fr;
    }

    .full-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

        .full-news-grid .news-card {
            height: 380px;
        }
}

@media (max-width: 992px) {
    .main-news-grid .news-card {
        grid-template-columns: 200px 1fr;
        height: 180px;
    }

    .full-news-grid .news-card {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .main-news-grid .news-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .main-news-grid .card-image {
        height: 110px;
    }

    .full-news-grid {
        grid-template-columns: 1fr;
    }

        .full-news-grid .news-card {
            height: auto;
        }

        .full-news-grid .card-image {
            height: 200px;
        }
}

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-excerpt {
        font-size: 14px;
        max-width: 100%;
    }

    .news-card.featured {
        grid-column: 1 / -1;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .news-cards {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        min-height: 360px;
    }

        .news-card.featured .card-image {
            height: 220px;
        }

    .news-card.featured {
        grid-column: auto;
        height: 280px;
        flex-direction: column;
    }

        .news-card.featured .card-image {
            height: 160px;
        }

        .news-card.featured .card-title {
            font-size: 18px;
        }

    .slide-content {
        padding: 20px;
    }

    .slide-title {
        font-size: 20px;
    }

    .slide-excerpt {
        display: none;
    }

    .slider-arrows {
        display: none;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .slide-meta {
        font-size: 11px;
    }

    .author-avatar {
        width: 24px;
        height: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .primary-grid {
        grid-template-columns: 1fr 300px;
    }

    .full-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .main-news-area .featured-news {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .primary-grid {
        grid-template-columns: 1fr;
    }

    .widgets-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .main-news-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured .card-image {
        height: 300px;
    }

    .main-news-area .featured-news {
        height: 360px;
    }

        .main-news-area .featured-news .featured-news-title {
            font-size: 22px;
        }
}

@media (max-width: 768px) {
    .main-section {
        margin-top: 5rem;
    }

    .widgets-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .full-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card.featured .card-image {
        height: 250px;
    }

    .card-title {
        font-size: 13px !important;
    }

    .news-card.featured .card-title {
        font-size: 20px;
    }

    .sub-news-grid {
        grid-template-columns: 1fr;
    }

    .main-news-area .featured-news {
        height: 300px;
    }

        .main-news-area .featured-news .featured-news-title {
            font-size: 20px;
        }
}

@media (max-width: 576px) {
    .card-image {
        height: 180px;
    }

    .news-card.featured .card-image {
        height: 200px;
    }

    .card-content {
        padding: 15px;
    }

    .card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .main-news-area .featured-news {
        height: 260px;
    }

        .main-news-area .featured-news .featured-news-content {
            padding: 20px;
        }

        .main-news-area .featured-news .featured-news-title {
            font-size: 18px;
        }

        .main-news-area .featured-news .featured-news-excerpt {
            display: none;
        }
}

@media (max-width: 1200px) {
    .full-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-news-card {
        height: 180px;
    }

    .main-news-image {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .full-news-grid {
        grid-template-columns: 1fr;
    }

    .main-news-card {
        flex-direction: column;
        height: auto;
    }

    .main-news-image {
        flex: none;
        height: 200px;
    }

    .main-news-excerpt {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 576px) {
    .main-news-image {
        height: 180px;
    }

    .main-news-content,
    .full-news-content {
        padding: 15px;
    }

    .full-news-image {
        height: 180px;
    }
}

/* Responsive tasarım güncellemeleri */
@media (max-width: 1200px) {
    .full-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-news-card {
        grid-template-columns: 250px 1fr;
    }

    .main-news-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .full-news-grid {
        grid-template-columns: 1fr;
    }

    .main-news-card {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
    }

    .main-news-image {
        min-height: 200px;
        width: 100%;
    }

    .main-news-content {
        height: auto;
    }
}

@media (max-width: 576px) {
    .main-news-image,
    .full-news-image {
        height: 180px;
    }

    .main-news-content,
    .full-news-content {
        padding: 15px;
    }

    .main-news-title,
    .full-news-title {
        font-size: 16px;
    }

    .main-news-excerpt,
    .full-news-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .news-slider {
        grid-column: 1 / -1;
        height: 400px;
    }

    .slider-sidebar {
        grid-column: 1 / -1;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .mini-card {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .slider-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .slider-sidebar {
        grid-template-columns: 1fr;
    }

    .mini-card {
        height: 180px;
    }

    .news-slider {
        height: 350px;
    }
}

.news-card.style1 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
    display: block;
}

    .news-card.style1 .card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

        .news-card.style1 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card.style1 .card-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
            transition: all 0.3s ease;
        }

    .news-card.style1:hover .card-image:after {
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
    }

    .news-card.style1 .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(100% - 40px);
        padding: 20px;
        z-index: 2;
        background: transparent;
    }

    .news-card.style1 .news-category-label {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        font-size: 10px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }

    .news-card.style1 .card-title {
        color: white;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        text-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    }

    .news-card.style1 .card-meta {
        color: rgba(255, 255, 255, 0.8);
    }

    .news-card.style1 .news-source {
        color: rgba(255, 255, 255, 0.9);
    }

    .news-card.style1 .news-date {
        color: rgba(255, 255, 255, 0.7);
    }

/* Yatay minimalist kart */
.news-card.style2 {
    display: grid;
    grid-template-columns: 120px 1fr;
    overflow: hidden;
    border-radius: 8px;
    min-height: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--card-bg);
}

    .news-card.style2:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .news-card.style2 .card-image {
        height: 100%;
        min-height: 120px;
        border-radius: 8px 0 0 8px;
        margin: 0;
        position: relative;
        overflow: hidden;
    }

        .news-card.style2 .card-image img {
            transition: transform 0.4s ease;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .news-card.style2:hover .card-image img {
        transform: scale(1.05);
    }

    .news-card.style2 .card-content {
        padding: 12px 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-card.style2 .card-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card.style2 .card-meta {
        font-size: 11px;
        color: var(--text-dark-low);
        margin-top: auto;
    }

    /* style 2 .big */

    .news-card.style2.big {
        grid-template-columns: 300px 1fr;
        min-height: 14px;
        height: 100%;
        max-height: 200px;
    }

        .news-card.style2.big .card-image {
            height: 100%;
            width: 300px;
        }

            .news-card.style2.big .card-image img {
                height: 100%;
            }

        .news-card.style2.big .card-title {
            font-size: 18px;
            line-height: 1.5;
            font-weight: 700;
            margin-bottom: 0;
        }

        .news-card.style2.big .card-description {
            font-size: 15px;
            line-height: 1.6;
            margin-top: 10px;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: auto;
        }

        .news-card.style2.big .card-meta {
            font-size: 14px;
            margin-top: 10px;
        }


/* Dikey minimalist kart */

.news-card.style3 {
    display: flex;
    flex-direction: column;
    padding: 15px;
    height: calc(100% - 30px);
    background-color: var(--card-bg);
    border-radius: 8px;
    min-height: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .news-card.style3 .card-image {
        width: 100%;
        height: 140px;
        border-radius: 8px;
        margin-bottom: 10px;
    }

        .news-card.style3 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card.style3 .card-image:hover img {
            transform: scale(1.05);
        }

    .news-card.style3 .card-content {
        padding: 0;
        flex: 1;
    }

    .news-card.style3 .card-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 5px;
        color: var(--text-dark);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card.style3 .card-meta {
        margin-top: 5px;
        font-size: 12px;
        color: var(--text-dark-low);
    }


/* Style 4 - Minimaliste Kart */
.news-card.style4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background-color: var(--card-bg);
    border-radius: 8px;
    min-height: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .news-card.style4 .card-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        margin: 0 15px 0 0;
    }

        .news-card.style4 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.4s ease;
        }

    .news-card.style4 .card-content {
        padding: 0;
        flex: 1;
    }

    .news-card.style4 .card-title {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .news-card.style4 .card-meta {
        margin-top: 5px;
        font-size: 11px;
    }
/* Style 5 - Dikey Kart */
.news-card.style5 {
    padding: 0;
    border-bottom: 1px solid var(--bg-color-dark);
}

    .news-card.style5 .card-title {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 15px;
        order: 1;
    }

    .news-card.style5 .card-image {
        height: 220px;
        order: 2;
    }

        .news-card.style5 .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

    .news-card.style5 .card-meta {
        order: 3;
    }

    .news-card.style5 .news-category-label {
        order: 0;
        margin-bottom: 10px;
    }

    .news-card.style5 .card-content {
        display: flex;
        flex-direction: column;
    }

.news-card.style6 {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-color-dark);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

    .news-card.style6:last-child {
        border-bottom: none;
    }

    .news-card.style6 .card-title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 5px;
        padding-left: 12px;
        position: relative;
    }

        .news-card.style6 .card-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

    .news-card.style6 .card-image {
        display: none;
    }

    .news-card.style6 .card-meta {
        padding-left: 12px;
    }

    .news-card.style6 .news-category-label {
        display: inline-block;
        padding: 2px 6px;
        font-size: 9px;
        margin-right: 5px;
        vertical-align: middle;
    }

/* Style 7 - Özel Video Kartı */
.news-card.style7 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 220px;
}

    .news-card.style7 .card-image {
        height: 100%;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

        .news-card.style7 .card-image:after {
            content: '';
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .news-card.style7 .video-play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        background-color: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        transition: all 0.3s ease;
    }

        .news-card.style7 .video-play-btn:after {
            content: '\f04b';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 16px;
            color: white;
            margin-left: 3px;
        }

    .news-card.style7:hover .video-play-btn {
        background-color: var(--primary-color);
        transform: translate(-50%, -50%) scale(1.1);
    }

    .news-card.style7 .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 2;
        background: transparent;
    }

    .news-card.style7 .card-title {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        text-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    }

/* Style 8 - Başlık ve İçerik Arkaplan Üstünde */
.news-card.style8 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
}

    .news-card.style8 .card-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .news-card.style8 .card-content {
        position: relative;
        z-index: 2;
        width: 90%;
        margin: 0 auto 20px;
        background-color: rgba(255,255,255,0.95);
        border-radius: 6px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        padding: 15px;
    }

    .news-card.style8 .card-title {
        font-size: 16px;
        color: var(--text-dark);
    }

    .news-card.style8 .news-category-label {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 3;
    }

/* Responsive Adjustments for Card Styles */
@media (max-width: 992px) {
    .news-card.style2 {
        grid-template-columns: 1fr;
    }

        .news-card.style2 .card-image {
            border-radius: 8px 8px 0 0;
            height: 160px;
        }

    .news-card.style8 .card-content {
        width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .news-card.style1 {
        min-height: 240px;
    }

    .news-card.style5 .card-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .news-card.style1 .card-title {
        font-size: 16px;
    }

    .news-card.style7 .video-play-btn {
        width: 40px;
        height: 40px;
    }
}

/* Öne Çıkan Haberler Widget'ı */
.trending-news-widget {
    padding: 15px;
    max-height: 350px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

    .trending-news-widget .widget-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--bg-color-dark);
    }

        .trending-news-widget .widget-title::after {
            display: none;
        }

    .trending-news-widget .widget-title-text {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

    .trending-news-widget .widget-title-link {
        font-size: 12px;
        color: var(--primary-color);
        font-weight: 500;
    }

.trending-news-list {
    overflow-y: auto;
    height: calc(100% - 50px);
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-color-dark) transparent;
}

    .trending-news-list::-webkit-scrollbar {
        width: 4px;
    }

    .trending-news-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .trending-news-list::-webkit-scrollbar-thumb {
        background-color: var(--bg-color-dark);
        border-radius: 20px;
    }

.trending-news-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--bg-color-dark);
    position: relative;
}

    .trending-news-item:last-child {
        border-bottom: none;
    }

    .trending-news-item a {
        display: block;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        padding-left: 14px;
        position: relative;
        transition: color 0.2s ease;
    }

        .trending-news-item a:before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

        .trending-news-item a:hover {
            color: var(--primary-color);
        }

.trending-news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-dark-low);
    margin-top: 4px;
    padding-left: 14px;
}

.trending-news-category {
    color: var(--primary-color);
    font-weight: 500;
}

.trending-news-count {
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-news-widget.big {
    padding: 15px;
    background-color: var(--card-bg);
}

    .trending-news-widget.big .trending-news-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .trending-news-widget.big .trending-news-item {
        padding: 0;
        border-bottom: 1px solid var(--bg-color-dark);
        padding-bottom: 15px;
    }

        .trending-news-widget.big .trending-news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .trending-news-widget.big .trending-news-item a {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 15px;
            padding-left: 0;
            align-items: center;
        }

            .trending-news-widget.big .trending-news-item a:before {
                display: none;
            }

            .trending-news-widget.big .trending-news-item a img {
                width: 100px;
                height: 70px;
                object-fit: cover;
                border-radius: 6px;
                transition: transform 0.3s ease;
            }

            .trending-news-widget.big .trending-news-item a:hover img {
                transform: scale(1.05);
            }

    .trending-news-widget.big .trending-news-meta {
        padding-left: 115px;
        margin-top: 8px;
    }

    .trending-news-widget.big .trending-news-category {
        font-weight: 600;
    }

@media (max-width: 576px) {
    .trending-news-widget.big .trending-news-item a {
        grid-template-columns: 80px 1fr;
        gap: 10px;
    }

        .trending-news-widget.big .trending-news-item a img {
            width: 80px;
            height: 60px;
        }

    .trending-news-widget.big .trending-news-meta {
        padding-left: 90px;
    }
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.section-line {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.section-line__container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .section-line__container::after {
        content: '';
        position: absolute;
        bottom: -2.8px;
        width: 50%;
        right: 20%;
        height: 10px;
        background-color: var(--category-color, var(--primary-color));
        transform: translateY(-50%);
        z-index: 1;
        clip-path: polygon(0.5% 0, 100% 0, 99.5% 100%, 0% 100%);
    }

.section-title {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    padding: 8px 24px;
    margin: 0;
    background-color: var(--category-color, var(--primary-color));
    clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
    min-width: 180px;
    text-align: center;
}

.section-link {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 24px;
    background-color: var(--category-color, var(--primary-color));
    color: #fff;
    text-decoration: none;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    transition: all 0.3s ease;
}

    .section-link:hover {
        opacity: 0.9;
        transform: translateX(5px);
    }

/* Authors Carousel Styles */
.authors-carousel {
    margin: 30px 0;
    padding: 20px 0;
    margin-bottom: 0;
    background: var(--bg-color);
    position: relative;
    overflow: visible;
}

    .authors-carousel .flickity-viewport::before {
        content: '';
        position: absolute;
        top: 0;
        left: unset;
        right: 0;
        height: 100%;
        width: 10%;
        z-index: 100;
        /* container dışına doğru kartlar yok oluyor */
        background: linear-gradient(to left, var(--bg-color) 20%, transparent 100%);
    }

.author-card {
    width: 280px;
    margin: 0 12px;
    padding: 0px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--bg-color);
    height: 120px;
}

    .author-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        border-color: var(--primary-color);
    }

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-content {
    flex: 1;
    text-align: left;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-title {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-stats {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: var(--text-dark-low);
    padding-top: 8px;
    border-top: 1px solid var(--bg-color);
}

.author-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-label {
    color: var(--text-dark-low);
}

.authors-carousel .flickity-button {
    background: var(--primary-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    opacity: 0.9;
    top: unset;
    z-index: 200;
}

    .authors-carousel .flickity-button svg {
        width: 16px;
        height: 16px;
        fill: var(--text-light);
        left: unset;
        top: unset;
    }

    .authors-carousel .flickity-button:hover {
        background: var(--primary-color);
        opacity: 1;
    }

.authors-carousel .flickity-prev-next-button .flickity-button-icon {
    width: 30%;
    height: 30%;
}

.authors-carousel .flickity-page-dots {
    bottom: 0px;
}

    .authors-carousel .flickity-page-dots .dot {
        width: 30px;
        height: 4px;
        border-radius: 3px;
        margin: 0 4px;
    }

.authors-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

/* Subscription Widget */
.subscription-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 12px;
    padding: 25px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.subscription-widget__header {
    text-align: center;
    margin-bottom: 20px;
}

.subscription-widget__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscription-widget__subtitle {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.subscription-widget__features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.subscription-widget__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

    .subscription-widget__feature i {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
    }

.subscription-widget__cta {
    display: block;
    background: white;
    color: var(--primary-color);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .subscription-widget__cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.subscription-widget__price {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    opacity: 0.9;
}

    .subscription-widget__price strong {
        font-size: 22px;
        font-weight: 700;
    }


@media (max-width: 992px) {
    .section-heading {
        margin-bottom: 20px;
        gap: 15px;
    }

    .section-title {
        font-size: 18px;
        padding: 8px 20px;
        min-width: 160px;
    }

    .section-link {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 15px;
        gap: 10px;
    }

    .section-line {
        height: 38px;
    }

    .section-title {
        font-size: 14px;
        padding: 6px 16px;
        min-width: 140px;
    }

    .section-link {
        padding: 6px 16px;
        font-size: 12px;
    }

        .section-link span {
            display: none;
        }

        .section-link::after {
            content: "\f054";
            font-size: 15px;
            margin-left: 5px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
        }


    .news-card.style2.big {
        grid-template-columns: repeat(3, 1fr);
    }

        .news-card.style2.big .card-image {
            width: 100%;
            height: 100%;
        }

        .news-card.style2.big .card-content {
            grid-column: span 2;
        }
}
