.jade-footer {
    padding: 72px 0 24px;

    background:
        linear-gradient(
            180deg,
            #1d1917,
            #151210
        );

    color: #eee8e3;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.045);
}

.jade-footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1fr;

    gap: 48px;
}

.jade-footer h2,
.jade-footer h3 {
    margin-top: 0;

    color: #fff;
}

.jade-footer h2 {
    margin-bottom: 14px;

    font-size: 30px;
}

.jade-footer h3 {
    margin-bottom: 15px;

    font-size: 18px;
}

.jade-footer p,
.jade-footer a {
    color: #c9c1bb;

    font-size: 13px;
}

.jade-footer a {
    text-decoration: none;

    transition: color .18s ease;
}

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

.jade-footer ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.jade-footer li {
    margin: 7px 0;
}

.jade-footer-bottom {
    margin-top: 50px;

    padding-top: 21px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.11);

    color: #958d87;

    font-size: 11px;
}

@media (max-width: 900px) {

    .jade-footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .jade-footer {
        padding-top: 55px;
    }

    .jade-footer-grid {
        grid-template-columns: 1fr;
    }

    .jade-footer-bottom {
        flex-direction: column;
    }
}

/* JADE_LEGAL_FOOTER_LINKS_START */

.jade-footer-legal-links {
    margin:
        12px 0 0;

    padding: 0;

    list-style: none;
}

.jade-footer-legal-links li {
    margin:
        7px 0;
}

.jade-footer-legal-links a {
    color: inherit;

    text-decoration: none;

    font-size: 12px;

    line-height: 1.45;
}

/* JADE_LEGAL_FOOTER_LINKS_END */

/* JADE_INFO_PRO13_CREDIT_STYLE_START */

.jade-footer-credit {
    color: inherit;

    font-size: 11px;
    line-height: 1.5;
}

.jade-footer-credit a {
    color: inherit;

    text-decoration: none;

    font-weight: 700;

    transition: opacity .18s ease;
}

.jade-footer-credit a:hover {
    opacity: .72;
}

/* JADE_INFO_PRO13_CREDIT_STYLE_END */

/* JADE_INFO_PRO13_BADGE_START */

.jade-footer-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 6px;

    padding: 5px 10px;

    border:
        1px solid rgba(168,85,247,.55);

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #6d28d9,
            #a855f7
        );

    color: #fff !important;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 15px 35px
        rgba(139,92,246,.18);

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

.jade-footer-credit a:hover {
    opacity: 1;

    transform:
        translateY(-1px);

    box-shadow:
        0 18px 38px
        rgba(139,92,246,.24);
}

/* JADE_INFO_PRO13_BADGE_END */
