/* Branded 404 card (resources/views/errors/404.blade.php). Values mirror the
   auth card (white r24 card on the global #F7F7F8 bg). */
#not-found .container {
    padding-top: 50px;
    padding-bottom: 100px;
}
#not-found .not-found-card {
    max-width: 640px;
    margin: 50px auto 0;
    padding: 60px 50px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    text-align: center;
}
/* .topic is the global yellow badge; only center it inside the card. */
#not-found .topic {
    margin-left: auto;
    margin-right: auto;
}
#not-found .title {
    margin-top: 20px;
    color: var(--color-text);
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
}
#not-found .text {
    margin-top: 16px;
    color: var(--color-text-alt);
}
#not-found .actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
#not-found .catalog-link {
    color: var(--color-text-link);
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
}
#not-found .catalog-link:hover {
    color: var(--color-text);
}
#not-found .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    background: var(--color-btn);
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 8px;
    text-decoration: none;
}
@media (max-width: 767px) {
    #not-found .not-found-card {
        padding: 40px 25px;
    }
    #not-found .title {
        font-size: 30px;
        line-height: 38px;
    }
}
