/* Responsive CSS для блога */

/* Большие десктопы (1200px и выше) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Десктопы (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
}

/* Планшеты (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-info {
        display: none;
    }
}

/* Мобильные устройства (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .blog-section,
    .about-section,
    .contact-section,
    .single-post {
        padding: 40px 0;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

/* Маленькие мобильные устройства (до 575px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .header-inner {
        height: 60px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .blog-section,
    .about-section,
    .contact-section,
    .single-post {
        padding: 30px 0;
    }
    
    .blog-card-content {
        padding: 15px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .pagination-link {
        width: 35px;
        height: 35px;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .post-content h2 {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    .post-content h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 12px;
    }
}
