/* --- Carousel Slider --- */

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

#news-carousel {
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.news-item {
    display: block;
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    color: white;
    text-decoration: none;
    transition: height 0.3s ease;
}

.news-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 40px; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    box-sizing: border-box;
}

.news-item-title {
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.news-item-source {
    font-size: 1em;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #007aff;
    opacity: 1;
}


/* Планшеты */
@media (max-width: 768px) {
    .news-item {
        height: 280px;
    }
    .news-item-title {
        font-size: 1.5em;
    }
}

/* Мобильные телефоны */
@media (max-width: 480px) {
    #news-carousel {
        margin-top: 30px;
        border-radius: 10px;
    }
    .news-item {
        height: 220px;
    }
    .news-item-overlay {
        padding: 30px 15px 30px;
    }
    .news-item-title {
        font-size: 1.3em;
    }
    .news-item-source {
        font-size: 0.9em;
    }
}