/* ==========================================================================
   PVM West - Footer & Social Styles
   Stopka strony i sekcja social media
   ========================================================================== */

/* ==========================================================================
   SOCIAL STRIP (shared)
   ========================================================================== */

.social-strip {
    margin-top: 2rem;
    background: var(--footer-pink);
    color: #1f2d3b;
}

.social-wrap {
    min-height: 6.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(31, 45, 59, 0.42);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ==========================================================================
   FOOTER (shared)
   ========================================================================== */

footer {
    background: #ffffff;
    padding: 2.5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.footer-column h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
    color: #536476;
    font-size: 0.92rem;
}

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

@media (max-width: 1080px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .social-wrap {
        min-height: auto;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 540px) {
    .social-wrap {
        min-height: auto;
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-links a {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.75rem;
    }
}
