/* ============================================
   EraNova 页脚样式（从 _footer.html 内联样式提取）
   ============================================ */

.footer .footer-custom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-custom-col {
    flex: 0 0 auto;
    min-width: 140px;
    text-align: left;
}

.footer .footer-custom-col h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer .footer-custom-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-custom-col li {
    margin-bottom: 8px;
}

.footer .footer-custom-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer .footer-custom-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer .footer-legal {
    display: flex;
    gap: 60px;
    padding-left: 5%;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    align-items: flex-start;
}

.footer .footer-legal-left {
    flex: 1;
    max-width: 480px;
}

.footer .footer-legal-right {
    flex: 0 0 auto;
}

.footer .footer-legal p {
    margin-bottom: 8px;
}

.footer .footer-legal .copyright {
    margin-top: 0;
    font-size: 12px;
}

.footer .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer .footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-links-row {
    display: flex;
    gap: 24px;
}

/* 响应式：窄屏下改为2x2网格，并且内容居中 */
@media (max-width: 768px) {
    .footer .footer-custom-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        text-align: center;
    }
    .footer .footer-custom-col {
        min-width: auto;
        text-align: center;
    }
    .footer .footer-custom-col h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .footer .footer-custom-col li {
        margin-bottom: 6px;
    }
    .footer .footer-legal {
        flex-direction: column;
        gap: 20px;
        font-size: 12px;
    }
    .footer .footer-legal-left {
        max-width: none;
    }
}
