/* Footer — matches legacy corporate footer style */
.sd-footer {
    background: #1a1a1a;
    color: #999;
    margin-top: auto;
    padding: 2rem 0 1.5rem;
}

    .sd-footer .sd-container {
        max-width: var(--page-max-width);
        margin: 0 auto;
        padding: 0 1rem;
    }

.sd-footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    text-align: left;
}

.sd-footer-column {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    min-width: 140px;
}

.sd-footer-column__heading {
    color: #ddd;
    font-size: .85rem;
    font-weight: 600;
    margin: 0 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sd-footer-column a {
    color: #bbb;
    text-decoration: none;
    font-size: .8rem;
    line-height: 1.6;
}

    .sd-footer-column a:hover {
        color: #fff;
        text-decoration: underline;
    }

.sd-footer-brand {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

.sd-footer-copyright {
    color: #666;
    font-size: .8rem;
    margin: 0;
}

/* Social + Newsletter combined row */
.sd-footer-connect {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sd-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

    .sd-footer-social a {
        padding: 2px;
    }

    .sd-footer-social img {
        display: block;
        height: 32px;
        width: 32px;
    }

    .sd-footer-social a:hover {
        opacity: .7;
    }

.sd-footer-newsletter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.sd-footer-newsletter__label {
    color: #ddd;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

    .sd-footer-newsletter__label::after {
        content: ':';
    }

.sd-footer-newsletter__form {
    display: flex;
    align-items: stretch;
}

.sd-footer-newsletter__input {
    border: 1px solid #666;
    background: #fff;
    color: #333;
    padding: .35em 1em;
    font-size: .85rem;
    min-width: 200px;
    margin-right: 10px;
}

.sd-footer-newsletter__btn {
    background: #444;
    border: 0;
    color: var(--accent-color-text);
    padding: .35em .75em;
    font-size: .85rem;
    text-transform: uppercase;
    cursor: pointer;
}

    .sd-footer-newsletter__btn:hover {
        background: #555;
    }

/* Column heading links */
.sd-footer-column__heading a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}

    .sd-footer-column__heading a:hover {
        text-decoration: underline;
        color: #fff;
    }

/* Legal links row */
.sd-footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: .75rem;
}

    .sd-footer-legal a {
        color: #999;
        text-decoration: none;
        font-size: .75rem;
    }

        .sd-footer-legal a:hover {
            color: #fff;
        }

        .sd-footer-legal a + a::before {
            content: '|';
            color: #555;
            padding: 0 .5em;
        }
