.site-footer {
    background: var(--primary-accent-dark);
    color: var(--bg-light);
    padding: 2rem 0 0 0;
}

.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    max-width: var(--content-width);
    margin: 0 auto;
}

.site-footer a {
    color: var(--secondary-accent);
    text-decoration: none;
    font-size: var(--font-size-small-ui);
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: var(--secondary-accent);
    font-size: var(--font-size-caption);
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
}


.footer-newsletter input[type="text"],
.footer-newsletter input[type="email"] {
    box-sizing: border-box;
    padding: 0.35rem 0.5rem;
    font-size: var(--font-size-micro);
    background: var(--bg-light);
}

.footer-newsletter label {
    font-size: var(--font-size-small-ui);
}

.footer-newsletter input {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 0;
    font-size: 0.95rem;
    border-top: 2px solid var(--primary-accent-light);
    color: var(--bg-light);
}

.footer-bottom a {
    color: var(--bg-light);
    text-decoration: underline;
}

/* Responsive Styles */

@media (max-width: 992px) {
    .footer-content {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        gap: 3rem;
    }

    .footer-social a {
        font-size: var(--font-size-small);
    }
}