/* 极简页脚 */
.minimal-footer {
    margin-top: 60px;
    padding: 16px 0;
    background: linear-gradient(180deg, 
        rgba(250, 250, 250, 0) 0%, 
        rgba(248, 249, 250, 0.8) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;  /* Changed from column to row */
    justify-content: space-between;  /* Added to space out sections */
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* Changed from center to flex-start */
    gap: 4px;
}

.brand-name {
    font-size: 20px;  /* Increased from 16px */
    font-weight: 600;
    color: #1D1D1F;
}

.brand-tagline {
    font-size: 14px;  /* Increased from 12px */
    color: #86868B;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;  /* Added to ensure left alignment */
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;  /* Align to the right */
    gap: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-links a {
    color: #86868B;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-company {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #86868B;
    font-size: 12px;
}

.footer-company .separator {
    color: #C7C7CC;
}

.footer-company a {
    color: #86868B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-company a:hover {
    color: #FF6B35;
}

@media (max-width: 768px) {
    .minimal-footer {
        margin-top: 40px;
        padding: 12px 0;
    }

    .footer-content {
        flex-direction: column;  /* Stack vertically on mobile */
        gap: 16px;
        padding: 0 16px;
    }

    .footer-brand {
        align-items: center;  /* Center align on mobile */
    }

    .footer-right {
        align-items: center;  /* Center align on mobile */
    }

    .brand-tagline {
        text-align: center;  /* Center text on mobile */
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-company {
        flex-direction: column;
        gap: 4px;
        text-align: center;  /* Center text on mobile */
    }

    .footer-company .separator {
        display: none;
    }
}
