/**
 * Footer Magic - The Cornmill Intelligencer
 * Styled to match the newspaper's warm, broadsheet aesthetic.
 */

.fm-footer {
    /* Break out of any parent container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    box-sizing: border-box;
    padding: 2.5rem 0 0;
    margin-top: 3rem;

    background: #E6E4DF;
    color: #2A2118;
    font-family: "Georgia", "Times New Roman", serif;
    border-top: 4px double #7A2518;
}

.fm-footer *,
.fm-footer *::before,
.fm-footer *::after {
    box-sizing: border-box;
}

.fm-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.fm-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.fm-footer-section h3 {
    color: #2A2118;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #7A2518;
}

.fm-footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fm-footer-section li {
    margin-bottom: 0.45rem;
}

.fm-footer-section a {
    color: #6B5E52;
    text-decoration: none;
    font-family: -apple-system, "Helvetica Neue", "Segoe UI", sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.fm-footer-section a:hover {
    color: #7A2518;
}

.fm-footer-section p {
    margin: 0 0 0.8rem;
    line-height: 1.6;
    color: #6B5E52;
    font-family: -apple-system, "Helvetica Neue", "Segoe UI", sans-serif;
    font-size: 0.9rem;
}

.fm-footer-section p strong {
    color: #2A2118;
}

/* Social Links */
.fm-social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.fm-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(42, 33, 24, 0.08);
    border-radius: 50%;
    color: #6B5E52;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.fm-social-links a:hover {
    background: #7A2518;
    color: #E6E4DF;
}

.fm-social-links svg {
    width: 16px;
    height: 16px;
}

/* Footer Bottom */
.fm-footer-bottom {
    border-top: 1px solid #B8AD98;
    padding: 1.2rem 0;
    text-align: center;
}

.fm-footer-bottom p {
    margin: 0;
    color: #6B5E52;
    font-family: -apple-system, "Helvetica Neue", "Segoe UI", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.fm-footer-bottom a {
    color: #6B5E52;
    text-decoration: none;
    transition: color 0.2s ease;
}

.fm-footer-bottom a:hover {
    color: #7A2518;
}

/* Responsive */
@media (max-width: 768px) {
    .fm-footer {
        padding: 1.5rem 0 0;
        margin-top: 2rem;
    }

    .fm-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .fm-footer-section h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fm-footer-content {
        grid-template-columns: 1fr;
    }
}
