@charset "UTF-8";

/* 모든 사이트 템플릿보다 먼저 적용되는 EditFlow 공통 기반 스타일 */
*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; }
img, picture, video, canvas, svg { max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
[hidden] { display: none !important; }

/* CMS 공통 콘텐츠 */
.cms-content { min-width: 0; }
.cms-content-empty {
    display: flex;
    min-height: 320px;
    margin: 80px 20px 120px;
    padding: 60px 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e8f2;
    border-radius: 22px;
    background: linear-gradient(145deg, #f8fbff 0%, #fff 72%);
    box-shadow: 0 18px 50px rgba(20, 72, 145, 0.08);
    text-align: center;
}
.cms-content-empty-icon {
    display: inline-flex;
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbe7fb;
    border-radius: 50%;
    background: #edf4ff;
    color: #1a62e5;
    font-size: 30px;
    line-height: 1;
}
.cms-content-empty-icon i { display: flex; }
.cms-content-empty h2 {
    margin: 0;
    color: #172b4d;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    word-break: keep-all;
}
@media (max-width: 768px) {
    .cms-content-empty {
        min-height: 220px;
        margin: 40px 16px 70px;
        padding: 42px 20px;
        border-radius: 16px;
    }
    .cms-content-empty-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 18px;
        font-size: 26px;
    }
    .cms-content-empty h2 { font-size: 21px; }
}
