#Content {
    padding-top: 28px !important;
}

.section-page-not-found {
    padding: 18px 0 56px;
}

.section-page-not-found .column_attr {
    margin: 0 !important;
}

.error-page-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 57, 74, 0.12);
    border-radius: 32px;
    padding: clamp(28px, 5vw, 54px);
    background: #fff;
    box-shadow: 0 28px 80px rgba(8, 57, 74, 0.08);
}

.error-page-grid {
    position: relative;
    z-index: 1;
    display: block;
}

.error-page-title {
    margin: 0 0 16px;
    color: #08394a;
    font-size: clamp(44px, 7vw, 84px);
    letter-spacing: -0.04em;
}

.error-page-title span {
    color: #50b964;
}

.error-page-copy {
    max-width: 34rem;
    margin: 0 0 24px;
    color: rgba(8, 57, 74, 0.85);
    font-size: clamp(18px, 2.1vw, 22px);
}

.error-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.error-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 700;
    
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.error-page-button:hover,
.error-page-button:focus {
    transform: translateY(-1px);
}

.error-page-button--primary {
    background: #50b964;
    color: #fff;
}

.error-page-button--primary:hover,
.error-page-button--primary:focus {
    background: #3ca766;
    color: #fff;
}

.error-page-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0 !important;
    list-style: none !important;
    max-width: 780px;
}

.error-page-shortcuts > li {
    list-style: none !important;
    margin: 0;
}

.error-page-shortcut {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 126px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(8, 57, 74, 0.08);
    text-decoration: none !important;
    color: #08394a;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.error-page-shortcut:hover,
.error-page-shortcut:focus {
    transform: translateY(-2px);
    border-color: rgba(80, 185, 100, 0.4);
    background: rgba(255, 255, 255, 0.88);
    color: #08394a;
}

.error-page-shortcut__tag {
    color: #50b964;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-page-shortcut__title {
    font-size: 21px;
    font-weight: 700;
}

.error-page-shortcut__desc {
    color: rgba(8, 57, 74, 0.74);
    font-size: 15px;
}

@media (max-width: 767px) {
    #Content {
        padding-top: 22px !important;
    }

    .section-page-not-found {
        padding-bottom: 42px;
    }

    .error-page-shell {
        border-radius: 24px;
        padding: 24px 20px;
    }

    .error-page-title {
        max-width: none;
        font-size: clamp(38px, 12vw, 58px);
    }

    .error-page-copy {
        font-size: 17px;
    }

    .error-page-actions {
        flex-direction: column;
    }

    .error-page-button {
        width: 100%;
    }

    .error-page-shortcuts {
        grid-template-columns: 1fr;
    }
}
