/* ========================================
   RESPONSIVE STYLES — CLI
   Generated: 2026-07-05 23:31:00
======================================== */

@media (max-width: 480px) {
    #NavBar {
        flex-direction: column;
        justify-content: center;
        padding: 16px;
        gap: 12px;
    }

    #HeroSection {
        justify-content: center;
        padding: 24px 16px;
        text-align: center;
    }

    #SearchBar {
        justify-content: center;
        padding: 12px;
        width: 100%;
    }

    #CategoryChipBar {
        justify-content: center;
        padding: 8px;
        gap: 8px;
    }

    #PluginGrid {
        display: grid;
        padding: 24px;
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }

    #HowToRunBlock {
        padding: 24px;
        text-align: center;
    }

    #RequirementsBlock {
        padding: 24px;
        text-align: left;
    }

    #FAQSection {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    #FooterSection {
        flex-direction: column;
        justify-content: center;
        padding: 24px;
        gap: 20px;
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    #NavBar {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 24px;
    }

    #HeroSection {
        justify-content: center;
        padding: 32px 24px;
        text-align: center;
    }

    #SearchBar {
        justify-content: center;
        padding: 16px;
        width: 80%;
    }

    #CategoryChipBar {
        justify-content: center;
        padding: 12px;
        gap: 12px;
    }

    #PluginGrid {
        display: grid;
        padding: 32px;
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    #HowToRunBlock {
        padding: 32px;
        text-align: center;
    }

    #RequirementsBlock {
        padding: 32px;
        text-align: left;
    }

    #FAQSection {
        display: grid;
        padding: 32px;
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    #FooterSection {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 32px;
        gap: 24px;
    }
}

@media (min-width: 769px) {
    #NavBar {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 48px;
    }

    #HeroSection {
        justify-content: flex-start;
        padding: 48px 64px;
    }

    #SearchBar {
        justify-content: flex-start;
        padding: 20px;
        width: 60%;
    }

    #CategoryChipBar {
        justify-content: flex-start;
        padding: 16px;
        gap: 16px;
    }

    #PluginGrid {
        display: grid;
        padding: 48px 96px;
        gap: 32px;
        grid-template-columns: repeat(3, 1fr);
    }

    #HowToRunBlock {
        padding: 48px 96px;
        text-align: left;
    }

    #RequirementsBlock {
        padding: 48px 96px;
        text-align: left;
    }

    #FAQSection {
        display: grid;
        padding: 64px 96px;
        gap: 32px;
        grid-template-columns: repeat(3, 1fr);
    }

    #FooterSection {
        flex-direction: row;
        justify-content: space-between;
        padding: 48px 96px;
    }
}

/* ========================================
   COMPACT VERTICAL RHYTHM
   Mirrors the rule in app-responsive.css, for the CLI-only block wrappers.
   This file is linked after app-bundle.css, so it must repeat the reset for
   the blocks it (re)defines. Drop the wrappers' vertical padding so it does
   not double with each inner .section; horizontal gutters are preserved.
======================================== */
#HeroSection,
#SearchBar,
#CategoryChipBar,
#PluginGrid,
#HowToRunBlock,
#RequirementsBlock,
#FAQSection,
#FooterSection {
    padding-top: 0;
    padding-bottom: 0;
}

