/* Footer */
.footer {
    position: relative;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-support-heading,
.footer-social-heading {
    font-size: var(--text-p1);
    margin-bottom: 1rem;
}

.footer-support-list,
.footer-social-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-support-list-item,
.footer-social-list-item {
    text-transform: uppercase;
    font-size: var(--text-btn1);
    padding: 0.5rem 0;
}

.footer-support-list-item a,
.footer-social-list-item a {
    text-decoration: none;
}

.footer-disclaimers {
    font-size: var(--text-btn1);
    grid-column: 1/-1;
    grid-row: 3;
}

.footer-logo {
    grid-column: 1/-1;
    margin: 1rem 0 2rem;
}

.footer-logo-image {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .footer {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 2rem;
    }

    .footer-support {
        grid-column: 1/4;
    }

    .footer-social {
        grid-column: 4/6;
    }

    .footer-support-list,
    .footer-social-list {
        display: flex;
        gap: 2rem;
    }

    .footer-support-list-item,
    .footer-social-list-item {
        padding: 0;
    }

    .footer-disclaimers {
        grid-column: 6/-1;
        text-align: right;
        grid-row: 1;
        align-self: flex-end;
    }

    .footer-logo {
        grid-column: 1/-1;
    }
}

/* Background Blur */
.background-blur {
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
    transition: 0.6s;
    width: 100vw;
    height: 200vh;
    overflow: hidden;
    padding-top: 100vh;
    background: linear-gradient(to bottom, rgba(10, 49, 65, 0) 0%, rgba(10, 49, 65, 0) 50%, rgba(10, 49, 65, 1) 100%);
}

.background-blur-circle {
    position: absolute;
    top: 25vh;
    left: 50%;
    translate: -50% 0;
    width: 200vw;
    min-width: 200vw;
    max-width: 200vw;
    height: 200vw;
    min-height: 200vw;
    max-height: 200vw;
    aspect-ratio: 1/1;
}

@media screen and (min-width: 768px) {
    .background-blur-circle {
        width: 200vw;
        min-width: 200vw;
        max-width: 200vw;
        height: 200vw;
        min-height: 200vw;
        max-height: 200vw;
    }
}