/**
 * CSS responsive cho trang chủ
 */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    /* Slider */
    .home-slider-item {
        height: 250px;
    }
    
    .home-slider-item-title {
        font-size: 20px;
    }
    
    /* Phần đăng truyện */
    .home-author-section {
        flex-direction: column;
    }
    
    .home-author-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .home-author-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Grid độc quyền */
    .home-exclusive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (dưới 768px) */
@media screen and (max-width: 767px) {
    /* Slider */
    .home-slider-item {
        height: 200px;
    }
    
    .home-slider-item-title {
        font-size: 18px;
    }
    
    .home-slider-excerpt {
        display: none;
    }
    
    /* Phần đăng truyện */
    .home-author-title {
        font-size: 20px;
    }
    
    .home-author-desc {
        font-size: 14px;
    }
    
    /* Grid độc quyền */
    .home-exclusive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tiêu đề các phần */
    .home-notify-title,
    .home-slider-title,
    .home-exclusive-title,
    .home-stories-title,
    .home-motivation-title {
        font-size: 18px;
    }
}

/* Mobile nhỏ (dưới 480px) */
@media screen and (max-width: 479px) {
    /* Grid độc quyền */
    .home-exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    /* Slider */
    .home-slider-item {
        height: 180px;
    }
    
    .home-slider-item-title {
        font-size: 16px;
    }
}
