/* =========================================================
   FOOTER STATES
========================================================= */

.footer-states {

    padding-top: 0.75rem;

    margin-top: 0;

    border-top:
        1px solid rgba(255,255,255,0.08);

}


/* =========================================================
   SECTION TITLE
========================================================= */

.footer-section-title {

    font-size: 1.05rem;

    font-weight: 600;

    margin-bottom: 1.25rem;

}


/* =========================================================
   REGION TITLES
========================================================= */

.footer-region-title {

    font-size: 0.85rem;

    text-decoration: underline;

    text-transform: uppercase;

    opacity: 0.7;

    margin-bottom: 0.55rem;

}


/* =========================================================
   STATE LINKS
========================================================= */

.footer-states a {

    display: inline-block;

    color: inherit;

    text-decoration: none;

    font-size: 13px;

    padding: 0.05rem 0;

    opacity: 0.82;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

}


.footer-states a:hover {

    opacity: 1;

    transform: translateX(2px);

}


/* =========================================================
   FOOTER LEGAL
========================================================= */

.footer-legal {

    font-size: 12px;

    line-height: 1.4em;

    opacity: 0.72;

    text-align: center;

}


/* =========================================================
   LEGAL LINKS
========================================================= */

.footer-legal-links {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 0.65rem;

    margin: 0.75rem 0;

}


.footer-legal-links a {

    color: inherit;

    text-decoration: none;

}


.footer-legal-links a:hover {

    opacity: 1;

    text-decoration: underline;

}


/* =========================================================
   DISCLAIMER
========================================================= */

.footer-disclaimer {

    max-width: 600px;

    font-size: 11px;

    margin: 0 auto;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    display: flex;

    justify-content: center;

    margin-bottom: 0.4rem;

}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {

    width: 120px;

    height: auto;

}


/* =========================================================
   FOOTER DISCLOSURE TOGGLES
========================================================= */

.footer-section-toggle,
.footer-region-toggle {

    padding: 0.8rem 0;

    border-top:
        1px solid rgba(255,255,255,0.08);

    cursor: pointer;

    font-size: 0.95rem;

    font-weight: 600;

}


/* =========================================================
   CHEVRON
========================================================= */

.footer-section-toggle i,
.footer-region-toggle i {

    font-size: 0.75rem;

    opacity: 0.7;

    transition:
        transform 0.2s ease;

}


/* =========================================================
   EXPANDED STATE
========================================================= */

.footer-section-toggle[aria-expanded="true"] i,
.footer-region-toggle[aria-expanded="true"] i {

    transform: rotate(180deg);

}


/* =========================================================
   COLLAPSE CONTENT
========================================================= */

#footerRegionsCollapse {

    padding-top: 0;

}


/* =========================================================
   MOBILE TIGHTENING
========================================================= */

@media (max-width: 767.98px) {

    .footer-states {

        padding-top: 0.6rem;

    }

    .footer-states .row {

        --bs-gutter-y: 0.4rem;

    }

    .footer-region-title {

        margin-bottom: 0.35rem;

    }

}