/* ============================================
   Error Page (서비스 점검/오류)
   ============================================ */
.error-page {
    min-height: calc(100vh - 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-20) var(--space-5);
}

.error-page__image {
    width: 160px;
    height: auto;
    margin-bottom: var(--space-8);
}

.error-page__title {
    font-size: var(--fs-page-title);
    font-weight: var(--fw-extrabold);
    color: var(--color-primary-900);
    margin-bottom: var(--gap-layout-h2-body);
    letter-spacing: var(--ls-tight);
}

.error-page__desc {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.error-page__actions {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}
