/* ===========================================================
   RESPONSIVE.CSS — SynthePulse Theme
   Mobile & Tablet Responsive Styling (Clean + Stable)
   =========================================================== */


/* ===========================================================
   TABLET (≤ 992px)
=========================================================== */
@media (max-width: 992px) {

    /* Hide desktop navigation */
    .sp-nav {
        display: none !important;
    }

    /* Show burger button */
    .sp-mobile-toggle {
        display: block !important;
        font-size: 26px;
        color: #00d7ff;
    }

    /* Header: compact */
    .sp-header {
        padding: 10px 16px !important;
    }

    /* Center logo better */
    .sp-logo img {
        max-height: 42px !important;
    }

    /* Hero */
    .sp-hero-thumb img {
        height: 280px !important;
    }
    .sp-hero-title {
        font-size: 26px !important;
    }
    .sp-hero-desc {
        font-size: 15px !important;
    }
}



/* ===========================================================
   MOBILE (≤ 768px)
=========================================================== */
@media (max-width: 768px) {

    /* -----------------------------------
       MOBILE MENU (FULLDROP)
    ----------------------------------- */
    .sp-mobile-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        background: #0d0f14;
        padding: 20px 0;
        z-index: 99999;
        border-top: 1px solid #1d2230;
    }

    .sp-mobile-menu.active {
        display: block !important;
    }

    /* Mobile menu items */
    .sp-menu-mobile li a {
        padding: 14px 20px;
        font-size: 17px;
        display: block;
        color: #dfe7f0;
    }

    .sp-menu-mobile li a:hover {
        background: #121b24;
        color: #00d7ff;
    }


    /* -----------------------------------
       HEADER ALIGNMENT
    ----------------------------------- */
    .sp-header-inner {
        justify-content: space-between !important;
        gap: 10px;
    }

    .sp-header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sp-search-toggle {
        font-size: 22px !important;
    }


    /* -----------------------------------
       HERO SECTION
    ----------------------------------- */
    .sp-hero-thumb img {
        height: 240px !important;
    }

    /* GRID: 2 columns */
    .sp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .sp-grid-thumb img {
        height: 140px !important;
    }


    /* -----------------------------------
       SINGLE ARTICLE
    ----------------------------------- */
    .mstz-article {
        padding: 0 14px !important;
    }

    .mstz-article-title {
        font-size: 28px !important;
    }

    .mstz-article-content p {
        font-size: 17px !important;
    }

    .mstz-article-content img {
        width: 100% !important;
        height: auto !important;
    }
}



/* ===========================================================
   SMALL MOBILE (≤ 480px)
=========================================================== */
@media (max-width: 480px) {

    /* Grid becomes 1 column */
    .sp-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    /* Hero */
    .sp-hero-thumb img {
        height: 200px !important;
    }

    /* Single article images */
    .mstz-article-content img {
        width: 100% !important;
    }

    /* Footer collapses */
    .sp-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        text-align: left;
    }

    .sp-footer-title {
        font-size: 17px !important;
    }

    .sp-footer-text {
        font-size: 14px !important;
    }
}
