/* ─────────────────────────────────────────────────────────────────
   FPC Footer Columns
   Drop this in your theme's stylesheet or the BB global CSS field.
   Adjust colors / font sizes to match your footer's existing styles.
───────────────────────────────────────────────────────────────── */

/* Wrapper: three equal columns, gap between them */
.fpc-footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

/* Each column takes equal share; min-width prevents collapse on medium screens */
.fpc-footer-col {
    flex: 1 1 180px;
}

/* Column heading — matches the bold uppercase style in the screenshot */
.fpc-footer-col__heading {
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 40px 0;
    padding: 0;
}

/* Reset list styles */
.fpc-footer-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Each list item */
.fpc-footer-col__list li {
    margin-bottom: 13px;
    line-height: 1.4;
}

/* Links */
.fpc-footer-col__list a {
    color: #cccccc;          /* adjust to match your footer link color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.fpc-footer-col__list a:hover,
.fpc-footer-col__list a:focus {
    color: #ffffff;
    text-decoration: underline;
}

/* Address sits as plain text, same style as the links */
.fpc-footer-col__address {
    color: #cccccc;
    line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────────
   Stack columns on mobile, keep two-up on tablet
──────────────────────────────────────────────────────────────── */
@media ( max-width: 767px ) {
    .fpc-footer-col {
        flex: 1 1 100%;
    }
}

@media ( min-width: 768px ) and ( max-width: 1023px ) {
    .fpc-footer-col {
        flex: 1 1 45%;
    }
}