/* footer.css - Footer and Divider Styles */

footer {
    padding: 20px 0 40px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 clamp(20px, 5vw, 100px);
    width: 100%;
}

.footer-section {
    flex: 1 1 250px; /* Stacks when container < ~500px + gaps */
    min-width: 220px;
}

.footer-left {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.footer-right a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--primary-color);
}

/* Common Home/Footer Divider */
.home-divider {
    border: 0;
    border-top: 1px solid #1e293b;
    max-width: 65%;
    margin: 0 auto 40px;
}