/* =========================================================
   SMARTER APPLIANCES FOOTER
   Converted from src/components/site-footer.tsx
   ========================================================= */

.sa-footer {
    width: 100%;

    padding: 24px;

    background: #0d1d1f;

    color: #f5f3ee;

    font-family: "DM Sans", sans-serif;
}


.sa-footer *,
.sa-footer *::before,
.sa-footer *::after {
    box-sizing: border-box;
}


/* =========================================================
   INNER
   max-w-7xl = 1280px
   ========================================================= */

.sa-footer__inner {
    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   TOP
   ========================================================= */

.sa-footer__top {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: space-between;

    gap: 24px;

    padding-bottom: 16px;

    border-bottom: 1px solid rgba(245, 243, 238, 0.10);
}


/* =========================================================
   BRAND
   ========================================================= */

.sa-footer__brand {
    display: flex;
    flex-direction: column;
}


.sa-footer__logo {
    display: block;

    width: auto;
    height: 40px;

    object-fit: contain;
}


.sa-footer__tagline {
    margin: 2px 0 0;

    color: rgba(245, 243, 238, 0.60);

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;
}


/* =========================================================
   LINKS
   ========================================================= */

.sa-footer__links {
    display: flex;
    flex-wrap: wrap;

    gap: 24px;
}


.sa-footer__links a {
    color: rgba(245, 243, 238, 0.60);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.25;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    text-decoration: none;

    transition: color 0.2s ease;
}


.sa-footer__links a:hover {
    color: #2dd4a8;
}


/* =========================================================
   BOTTOM
   ========================================================= */

.sa-footer__bottom {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: space-between;

    gap: 8px;

    padding-top: 16px;

    color: rgba(245, 243, 238, 0.40);

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.25;
}


.sa-footer__bottom p {
    margin: 0;
}


/* =========================================================
   RESPONSIVE
   Tailwind md = 768px
   ========================================================= */

@media (min-width: 768px) {

    .sa-footer__top {
        flex-direction: row;

        align-items: flex-start;
    }


    .sa-footer__links {
        padding-top: 4px;
    }


    .sa-footer__bottom {
        flex-direction: row;

        align-items: center;
    }

}