/**
 * Footer bottom — keep content aligned with footer top container,
 * prevent horizontal scroll from Agrion's ::before pseudo-element.
 */

/* Clip the Agrion ::before that extends right to infinity */
.site-footer__bottom {
    overflow-x: hidden;
}

/* Reset row gutters (also set via g-0 in blade) */
.site-footer__bottom .row {
    margin-left: 0;
    margin-right: 0;
}

/* Inner: full-width flex row */
.site-footer__bottom-inner.brice-footer-bottom-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 0.5rem 1.25rem !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    /* Reset Agrion's large left padding and border-radius */
    padding-left: 0 !important;
    border-top-left-radius: 0 !important;
    background-color: transparent !important;
}

/* Hide Agrion's ::before that paints a dark box */
.site-footer__bottom-inner.brice-footer-bottom-inner::before {
    display: none !important;
}

.site-footer__bottom-text {
    flex: 1 1 auto !important;
    margin: 0 !important;
    white-space: normal !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
}

.site-footer__bottom-links {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.site-footer__bottom-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.site-footer__bottom-links a:hover {
    color: var(--brice-yellow) !important;
}

.site-footer__bottom-links span {
    color: rgba(255, 255, 255, 0.35) !important;
}

@media (max-width: 768px) {
    .site-footer__bottom-inner.brice-footer-bottom-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}
