/* SINCAR Footer Styles */

.home-footer {
    background: #1f2937;
    color: #9ca3af;
}

.home-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-footer .footer-brand {
    font-weight: 800;
    color: #fff;
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info a:hover {
    color: #fff;
    text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px) {
    .home-footer__inner {
        padding: 40px 20px;
    }

    .home-footer .footer-brand {
        font-size: 24px;
    }

    .footer-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .home-footer__inner {
        padding: 32px 16px;
    }

    .home-footer .footer-brand {
        font-size: 20px;
    }

    .footer-info p {
        font-size: 12px;
        line-height: 1.8;
    }
}
