/* footer li {
    list-style-type: none;
} */

@keyframes bannerFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.banner-fade-up {
    will-change: opacity, transform;
    opacity: 0;
    transform: translateY(20px);
    animation: bannerFadeUp 0.7s ease-out forwards;
}

/* ========================================
   Error Page Container
======================================== */

.error-page__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
    padding-top: 5rem;
    padding-bottom: 17.5625rem;
}

/* ========================================
   Title & Description
======================================== */

.error-page__title {
    max-width: 45.5625rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
}

.error-page__description {
    max-width: 26.5625rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
}

p {
    --wp--preset--font-size--default: 1.125rem;
}

/* ========================================
   CTA Wrapper
======================================== */

.error-page__cta--wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ========================================
   Homepage Button
======================================== */

.error-page__homepage--link {
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: rgb(255 255 255);
    text-decoration: none;
    white-space: nowrap;
    background-color: rgb(99 101 254);
    border: 0.125rem solid rgb(99 101 254);
    border-radius: 3.25rem;
    box-shadow: 0 0 #0000;
    transition: color 0.3s, background-color 0.3s, border-color 0.3s, text-decoration-color 0.3s, fill 0.3s, stroke 0.3s;
}

/* ========================================
   Contact Button
======================================== */

.error-page__contact--link {
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;

    padding: 0.75rem 4rem;

    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;

    color: rgb(0 0 0);
    text-decoration: none;
    white-space: nowrap;

    background-color: rgb(246 246 246);
    border: 0.125rem solid rgb(246 246 246);
    border-radius: 3.25rem;

    box-shadow: 0 0 #0000;

    transition:
        color 0.3s,
        background-color 0.3s,
        border-color 0.3s,
        text-decoration-color 0.3s,
        fill 0.3s,
        stroke 0.3s;
}

/* ========================================
   Responsive Styles
======================================== */

@media (min-width: 640px) {
    .error-page__cta--wrapper {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .error-page__container {
        row-gap: 3rem;
        padding-top: 11.5rem;
    }

    .error-page__title {
        font-size: 5rem;
        font-weight: 700;
        line-height: 105%;
    }
}

@media (min-width: 1280px) {
    .error-page__container {
        padding-left: 8.625rem;
        padding-right: 8.625rem;
    }
}