/* ── BBR Footer ── */
.site-footer,
.site-footer * {
    box-sizing: border-box;
}

.bbr-footer-main {
    background: #181818;
    padding: 56px 0 44px;
    border-top: 3px solid #ac0018;
}

.bbr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 48px;
}

/* Brand column */
.bbr-footer-brand {}

.bbr-footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.bbr-footer-logo {
    display: block;
    max-height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.bbr-footer-site-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-decoration: none;
}

.bbr-footer-tagline {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 260px;
}

.bbr-footer-social {
    display: flex;
    gap: 8px;
}

.bbr-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: #999;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.bbr-footer-social a:hover {
    background: #ac0018;
    color: #fff;
}

/* Link columns */
.bbr-footer-col {}

.bbr-footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bbr-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbr-footer-links li {
    margin-bottom: 11px;
}

.bbr-footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bbr-footer-links a:hover {
    color: #fff;
}

.bbr-footer-links a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ac0018;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s;
}

.bbr-footer-links a:hover::before {
    opacity: 1;
}

.bbr-footer-col-spacer {
    margin-top: 28px;
}

/* Bottom bar */
.bbr-footer-bottom {
    background: #0e0e0e;
    padding: 18px 0;
}

.bbr-footer-bottom .container-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bbr-footer-copy {
    font-size: 13px;
    color: #444;
}

.bbr-footer-copy a {
    color: #666;
    text-decoration: none;
}

.bbr-footer-copy a:hover {
    color: #fff;
}

.bbr-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bbr-footer-abo-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ac0018;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.bbr-footer-abo-cta:hover {
    background: #8a0013;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 992px) {
    .bbr-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .bbr-footer-brand {
        grid-column: 1 / -1;
    }
    .bbr-footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .bbr-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .bbr-footer-main {
        padding: 40px 0 32px;
    }
    .bbr-footer-bottom .container-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
