.aw-layout-error {
    min-height: 100vh;
    padding: 2rem;

    &__card {
        max-width: 100vw;
        margin: 2rem -2rem 0;
        border-radius: 0.9375rem;
        background: var(--c-surface);
        padding: 1.5rem;

        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;

        &-wrapper {
            padding: 1rem 0;

            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        &-title {
             font-size: 2rem;
             font-weight: 700;
             line-height: 1;
            text-align: center;
        }

        &-text {
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.125rem;
            text-align: center;
        }
    }
}

@screen lg {
    .aw-layout-error {
        &__card {
             margin: 2rem auto 0;
             max-width: 33.75rem;
        }
    }
}
