/**
 * footer_style_general.css
 * Base footer styles shared across all breakpoints.
 * Layout (padding, flex direction) is in footer_style_desktop.css
 * and footer_style_mobile.css.
 */

.site-footer {
    background: #eeeeee;
    color: #333;
}

/* Link styling */
.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    /* Comfortable touch target */
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: var(--color-primary-mid);
    text-decoration: underline;
}

/* List reset */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

/* Section headings */
.footer-address h4,
.footer-links h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* Body text – reset global p { max-width: 100ch } so text centres on mobile */
.footer-address p,
.footer-links p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: 0;
    color: #555;
    max-width: 100%;
}

/* Links inside address block */
.footer-address a {
    color: var(--color-primary-mid);
    text-decoration: none;
}

.footer-address a:hover {
    text-decoration: underline;
}

/* Copyright strip */
.footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 36px;
    padding-top: 18px;
    text-align: center;
    font-size: var(--fs-sm);
    color: #888;
    max-width: 100%;
}

.footer-bottom p{
    text-align: center;
    font-size: var(--fs-sm);
    color: #888;
    max-width: 100%;
}

