/* ===================== RESPONSIVE ===================== */

/* Laptop: 1200px */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    .header-ad {
        width: 500px;
    }
    .hero-overlay h2 {
        font-size: 40px;
    }
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablet: 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .top-bar-center,
    .top-bar-right .social-icons {
        display: none;
    }
    .main-header {
        height: auto;
        padding: 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    .header-ad {
        display: none;
    }
    .header-left {
        order: 1;
    }
    .header-right {
        order: 2;
    }
    .nav-menu {
        display: none;
    }
    .hamburger-btn {
        display: flex !important;
    }
    .content-wrap {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .hero-main {
        height: 300px;
    }
    .hero-sub-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .hero-sub-card {
        height: 180px;
    }
    .hero-overlay h2 {
        font-size: 28px;
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .latest-grid {
        grid-template-columns: 1fr;
    }
    .latest-card {
        flex-direction: column;
    }
    .latest-card-thumb {
        width: 100%;
        height: 200px;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .footer-grid .footer-col:last-child {
        grid-column: auto;
    }
    .post-hero {
        height: 250px;
    }
    .post-hero .hero-overlay h2 {
        font-size: 24px;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }
    .hero-sub-grid {
        grid-template-columns: 1fr;
    }
    .hero-sub-card {
        height: 200px;
    }
    .hero-overlay h2 {
        font-size: 22px;
    }
    .hero-overlay p {
        font-size: 13px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .pagination {
        flex-wrap: wrap;
    }
    .section-header h2 {
        font-size: 20px;
    }
    .subscribe-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    .header-icon-btn {
        width: 40px;
        height: 40px;
    }
}
