/* Shared Footer Styles for Wallwall */

.footer {
    background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    color: #7B7B7B;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #FD8B2B;
    text-decoration-color: #FD8B2B;
    text-decoration-thickness: 2px;
}

.footer-divider {
    color: #d1d5db;
    user-select: none;
}

.footer-hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 1rem 0;
}

.footer-info {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.footer-info p {
    margin: 0.25rem 0;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
        text-align: center;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
        justify-content: center;
    }

    .footer-link {
        font-size: 0.9375rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-info {
        font-size: 0.8125rem;
        text-align: center;
    }

    .footer-copyright {
        font-size: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .footer-container {
        padding: 0 20px;
    }
}
