/*
 * responsive-shared.css - Shared responsive styles (footer, labels, buttons)
 * Mobile nav styles → header.css (canonical, inlined as critical)
 */

/* ===== Footer & Shared Mobile ===== */
@media (max-width: 768px) {
    /* body padding-top set per-page in header.php inline (40px front, 90px others) */

    /* Footer Responsive */
    .footer-container {
        padding: 0 20px!important;
    }

    .footer-content {
        grid-template-columns: 1fr!important;
        gap: 40px!important;
        margin-bottom: 60px!important;
    }

    .footer-divider {
        width: calc(100% - 40px)!important;
        margin: 0 auto 40px auto!important;
    }

    .footer-social {
        gap: 30px!important;
        margin-bottom: 40px!important;
    }

    /* Section Label Responsive */
    .label-text {
        font-size: 14px;
    }

    .label-dot {
        width: 8px;
        height: 8px;
    }

    /* Mission Button Responsive */
    .mission-btn {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* Footer Links Section */
    .footer-links-section {
        margin-top: 0!important;
    }
}

/* ===== Footer Medium Desktop ===== */
@media (min-width: 1201px) and (max-width: 1919px) {
    .footer-container {
        padding: 0 60px;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .footer-divider {
        width: calc(100% - 120px);
        margin: 0 auto 50px auto;
    }
}

/* ===== Footer Tablet ===== */
@media (min-width: 769px) and (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 80px;
    }

    .footer-divider {
        width: calc(100% - 80px);
        margin: 0 auto 50px auto;
    }

    .footer-social {
        gap: 50px;
        margin-bottom: 50px;
    }
}