/* 서버 점검 페이지 — 기존 팔레트 (#333, #666, #a28b4f, #f5f5f5, #fff) */

.maintenance-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #f5f5f5;
    box-sizing: border-box;
}

.maintenance-inner {
    max-width: 520px;
    width: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 48px 32px;
    box-sizing: border-box;
}

.maintenance-title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    word-break: keep-all;
}

.maintenance-desc {
    margin: 0 0 28px;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

.maintenance-home {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #a28b4f;
    text-decoration: none;
    white-space: nowrap;
    word-break: keep-all;
    border: 0;
    line-height: 1.2;
}

.maintenance-home:hover,
.maintenance-home:focus {
    background: #908373;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .maintenance-page {
        padding: 48px 16px;
        min-height: 40vh;
    }

    .maintenance-inner {
        padding: 36px 20px;
    }

    .maintenance-title {
        font-size: 20px;
    }

    .maintenance-desc {
        font-size: 14px;
    }
}
