/* FOOTER */

.site-footer{

    background:
    linear-gradient(
        180deg,
        #0d0d0d,
        #161616
    );

    margin-top:40px;

    padding:
    60px 40px 25px;

    color:#fff;
}

.footer-top{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr;

    gap:50px;

    margin-bottom:40px;
}

/* BRAND */

.footer-logo{

    font-size:34px;
    font-weight:800;

    margin-bottom:18px;
}

.footer-brand p{

    color:#bdbdbd;

    max-width:420px;

    line-height:1.8;
}

/* LINKS */

.footer-links h4{

    margin-bottom:18px;

    background:
    linear-gradient(
        90deg,
        #b71c1c,
        #ff6b00
    );

    -webkit-background-clip:
    text;

    -webkit-text-fill-color:
    transparent;
}

.footer-links{

    display:flex;
    flex-direction:column;
}

.footer-links a{

    color:#d0d0d0;

    margin-bottom:12px;

    transition:.3s ease;
}

.footer-links a:hover{

    color:#ff8c00;

    transform:
    translateX(3px);
}

/* DISCLAIMER */

.affiliate-disclaimer{

    background:
    rgba(255,107,0,.08);

    border:
    1px solid
    rgba(255,107,0,.15);

    padding:18px;

    border-radius:20px;

    text-align:center;

    color:#d0d0d0;

    margin-bottom:25px;
}

/* BOTTOM */

.footer-bottom{

    border-top:
    1px solid
    rgba(255,255,255,.06);

    padding-top:20px;

    text-align:center;

    color:#9ca3af;
}