/* Consolidated styles: index.css */

/* Source: Former index.css */
body.page-index {
    background: linear-gradient(180deg, #ffffff 0%, var(--pb-bg) 100%);
}

.pb-login-wrap {
    min-height: calc(100vh - 210px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 30px;
    align-items: stretch;
}

.pb-login-copy,
.pb-login-card,
.pb-empty-box {
    border: 1px solid rgba(228, 231, 236, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--pb-shadow);
}

.pb-login-copy {
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pb-login-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: 0;
}

.pb-login-copy p {
    max-width: 560px;
    margin: 20px 0 0;
    color: var(--pb-muted);
    font-size: 17px;
    line-height: 1.75;
}

.pb-info-card {
    padding: 28px;
}

.pb-info-title {
    margin: 0 0 18px;
    font-size: 18px;
    letter-spacing: 0;
}

.pb-info-list {
    display: grid;
    gap: 14px;
}

.pb-info-item {
    padding: 16px;
    border: 1px solid var(--pb-line);
    border-radius: 8px;
    background: #ffffff;
}

.pb-info-label {
    display: block;
    margin-bottom: 6px;
    color: var(--pb-muted);
    font-size: 12px;
    font-weight: 800;
}

.pb-info-value {
    display: block;
    font-size: 15px;
    font-weight: 800;
}

.pb-login-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--pb-shadow-strong);
}

.pb-login-list {
    align-content: start;
}

.pb-login-field-item input {
    width: 100%;
    height: 38px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--pb-line);
    border-radius: 0;
    outline: none;
    color: var(--pb-text);
    background: transparent;
    font-weight: 800;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pb-login-field-item input::placeholder {
    color: #98a2b3;
    font-weight: 800;
}

.pb-login-field-item input:focus {
    border-color: rgba(37, 99, 235, 0.72);
    box-shadow: 0 2px 0 rgba(37, 99, 235, 0.1);
}

.pb-login-error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(220, 38, 38, 0.18);
    border-radius: 8px;
    color: var(--pb-danger);
    background: var(--pb-danger-soft);
    font-size: 14px;
    font-weight: 800;
}

.pb-login-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--pb-primary);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
    cursor: pointer;
    font-weight: 900;
}

.pb-login-submit:hover {
    background: var(--pb-primary-dark);
}

.pb-empty-box {
    min-height: 420px;
    padding: 34px;
}

.pb-empty-box::before {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: var(--pb-muted);
    background: rgba(248, 250, 252, 0.82);
    font-weight: 800;
}

.pb-notice-board {
    min-height: 420px;
}

.pb-notice-board-head {
    margin-bottom: 18px;
}

.pb-board-title {
    margin: 0;
    color: var(--pb-text);
    font-size: inherit;
    line-height: 1.4;
    font-weight: 800;
}

/* ── 공지 게시판(리스트/아코디언) — 카드방식에서 변경 ─────────────────── */
.index-notice-board-list {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--surface);
    overflow: hidden;
}
.index-notice-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
}
.index-notice-item {
    border-bottom: 1px solid var(--border);
}
.index-notice-item:last-child {
    border-bottom: 0;
}
.index-notice-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    border-left: 3px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}
.index-notice-summary::-webkit-details-marker {
    display: none;
}
.index-notice-summary:hover {
    background: var(--surface-row-hover);
}
.index-notice-subject {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--text-strong);
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 제목 앞 마커로 개별 글을 구분한다. */
.index-notice-subject::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--border-strong);
    vertical-align: middle;
}
.index-notice-date {
    flex: 0 0 auto;
    color: var(--text-faint);
    font-size: 12px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.index-notice-caret {
    flex: 0 0 auto;
    color: var(--text-placeholder);
    font-size: 10px;
    transition: transform 0.15s ease;
}
.index-notice-item[open] .index-notice-caret {
    transform: rotate(180deg);
}
/* 열린(현재 보는) 글은 확실히 강조: 액센트 배경 + 좌측 바 + 제목색. */
.index-notice-item[open] > .index-notice-summary {
    background: var(--accent-soft);
    border-left-color: var(--accent);
}
.index-notice-item[open] .index-notice-subject {
    color: var(--accent-ink);
}
.index-notice-item[open] .index-notice-subject::before {
    background: var(--accent);
}
.index-notice-body {
    padding: 6px 18px 18px;
    border-top: 1px dashed var(--divider);
}
.index-notice-item-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 12px;
}
.index-notice-item-actions .index-notice-delete-form {
    margin: 0;
}

.pb-postit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pb-postit-card {
    position: relative;
    min-height: 250px;
    padding: 24px 22px 44px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.pb-postit-card h2 {
    margin: 0 0 10px;
    color: var(--pb-text);
    font-size: 14px;
    line-height: 1.72;
    font-weight: 800;
    letter-spacing: 0;
}

.pb-postit-content {
    color: #334155;
    font-size: 14px;
    line-height: 1.72;
}

.pb-postit-content p {
    margin: 0 0 8px;
}

.pb-postit-card time {
    position: absolute;
    right: 20px;
    bottom: 16px;
    color: rgba(15, 23, 42, 0.42);
    font-size: 12px;
    font-weight: 800;
}

.pb-notice-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.pb-notice-pagination a,
.pb-notice-pagination span {
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--pb-line);
    border-radius: 999px;
    color: var(--pb-muted);
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.pb-notice-pagination a:hover,
.pb-notice-pagination .is-active {
    color: #ffffff;
    border-color: var(--pb-primary);
    background: var(--pb-primary);
}

.pb-notice-pagination .is-disabled {
    opacity: 0.45;
}

@media (max-width: 760px) {
    .pb-login-wrap {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }

    /* .pb-notice-board 는 여기서 제외한다. 데스크톱에서 padding 이 없는데 모바일에서만 24px 이 붙어
       페이지 여백(.pb-page)과 겹쳐 공지 카드 바깥 여백이 두 배로 보였다. */
    .pb-login-copy,
    .pb-login-card,
    .pb-empty-box {
        padding: 24px;
    }

    .pb-login-copy p {
        font-size: 15px;
    }

    .pb-notice-board-head {
        margin-bottom: 16px;
    }

    .pb-postit-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pb-postit-card {
        min-height: 210px;
    }
}

/* Source: Inline styles from index.php block 1 */
body.page-index .index-page-shell {
    width: 100%;
    margin: 0;
    padding: 32px 24px 80px;
    box-sizing: border-box;
}
/* 모바일에서는 다른 페이지(.pb-page)와 동일한 좌우/하단 여백을 쓴다. */
@media (max-width: 760px) {
    body.page-index .index-page-shell {
        padding: 32px 14px 54px;
    }
}
body.page-index .index-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    align-items: stretch;
}
/* 비로그인 화면: 공지 제거 → 로그인/회원가입 패널만. 왼쪽 정렬로 통일. */
body.page-index .index-auth-layout-solo {
    grid-template-columns: minmax(0, 440px);
    justify-content: start;
}
body.page-index .index-notice-card,
body.page-index .index-auth-card,
body.page-index .index-notice-list-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    box-sizing: border-box;
}
body.page-index .index-notice-card {
    padding: 18px;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
body.page-index .index-notice-title,
body.page-index .index-notice-list-card h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.02em;
}
body.page-index .index-notice-content {
    color: #374151;
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
}
/* ── Summernote 본문 일반 도큐먼트 스타일(이미지·목록·제목·인용·표·링크) ── */
body.page-index .index-notice-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 8px 0;
}
body.page-index .index-notice-content p { margin: 6px 0; }
body.page-index .index-notice-content ul,
body.page-index .index-notice-content ol { margin: 8px 0; padding-left: 22px; }
body.page-index .index-notice-content li { margin: 3px 0; }
body.page-index .index-notice-content h1,
body.page-index .index-notice-content h2,
body.page-index .index-notice-content h3,
body.page-index .index-notice-content h4 {
    margin: 16px 0 8px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-strong);
}
body.page-index .index-notice-content a {
    color: var(--accent);
    text-decoration: underline;
}
body.page-index .index-notice-content blockquote {
    margin: 10px 0;
    padding: 8px 14px;
    border-left: 3px solid var(--border-strong);
    background: var(--surface-muted);
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
}
body.page-index .index-notice-content table {
    border-collapse: collapse;
    margin: 8px 0;
    max-width: 100%;
}
body.page-index .index-notice-content td,
body.page-index .index-notice-content th {
    border: 1px solid var(--border);
    padding: 6px 10px;
}
body.page-index .index-notice-content b {
    color: #111827;
    font-weight: 800;
}
/* 색을 지정한 조상(인라인 style) 안의 굵은 글씨는 위 기본색 대신 지정색을 따르게 한다. */
body.page-index .index-notice-content [style*="color"] b {
    color: inherit;
}
body.page-index .index-auth-panel {
    display: grid;
    gap: 12px;
    height: 100%;
    align-content: stretch;
}
body.page-index .index-auth-card {
    display: grid;
    gap: 8px;
    padding: 14px;
}
body.page-index .index-auth-card h2 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}
body.page-index .index-auth-card input {
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 12px;
    line-height: 1.3;
    outline: none;
    box-sizing: border-box;
}
body.page-index .index-auth-card input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}
body.page-index .index-password-field {
    position: relative;
    width: 100%;
}
body.page-index .index-password-field input {
    padding-right: 54px;
}
body.page-index .index-password-toggle {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 38px;
    height: 24px;
    padding: 0 8px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}
body.page-index .index-password-toggle:hover,
body.page-index .index-password-toggle:focus {
    border-color: #2563eb;
    color: #1d4ed8;
    outline: none;
}
body.page-index .index-submit-btn {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border-radius: 12px;
    border: 1px solid transparent;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.14);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
body.page-index .index-submit-btn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}
body.page-index [data-index-auth-form="register"] .index-submit-btn {
    background: #111827 !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
}
body.page-index [data-index-auth-form="register"] .index-submit-btn:not(:disabled):hover {
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.20);
}
body.page-index .index-submit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
body.page-index .index-form-message,
body.page-index .index-mail-check,
body.page-index .index-invite-check,
body.page-index .index-password-help {
    font-size: 11px;
    line-height: 1.45;
    color: #64748b;
}
body.page-index .is-error {
    color: #dc2626 !important;
}
body.page-index .is-ok {
    color: #047857 !important;
}

body.page-index .index-auto-login-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    font-size: 11px;
    line-height: 1.45;
    color: #475569;
    cursor: pointer;
}
body.page-index .index-auto-login-check input {
    width: 14px !important;
    height: 14px !important;
    min-height: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}
body.page-index .index-auto-login-check span {
    min-width: 0;
}

body.page-index .index-privacy-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 6px;
    align-items: start;
    font-size: 11px;
    line-height: 1.45;
    color: #475569;
    cursor: pointer;
}
body.page-index .index-privacy-check input {
    width: 14px !important;
    height: 14px !important;
    min-height: 14px !important;
    padding: 0 !important;
    margin: 1px 0 0 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}
body.page-index .index-privacy-check span {
    min-width: 0;
}
body.page-index .index-notice-board {
    width: 100%;
}
body.page-index .index-notice-board .pb-notice-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
body.page-index .index-notice-write-toggle {
    flex: 0 0 auto;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #2563eb;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
}
body.page-index .index-notice-write-toggle:hover {
    background: #1d4ed8;
}
body.page-index .index-notice-write-actions .pb-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #d7dee8;
    cursor: pointer;
}
body.page-index .index-notice-write-actions .pb-btn-white {
    color: #334155;
    background: #fff;
}
body.page-index .index-notice-write-actions .pb-btn-white:hover {
    background: #f1f5f9;
}
body.page-index .index-notice-write-actions .pb-btn-black {
    color: #fff;
    background: #111827;
    border-color: transparent;
}
body.page-index .index-notice-write-actions .pb-btn-black:hover {
    background: #0b1220;
}
body.page-index .index-notice-write-form {
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* display:flex 가 HTML hidden 속성(UA display:none)을 이겨서 클릭 전에도 폼이 보이던 문제 수정.
   hidden 일 때는 확실히 숨긴다(작성 버튼을 눌러야만 노출). */
body.page-index .index-notice-write-form[hidden] {
    display: none;
}
body.page-index .index-notice-write-heading {
    font-size: 14px;
    font-weight: 800;
    color: var(--pb-text);
}
body.page-index .index-notice-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
body.page-index .index-notice-card-actions .index-notice-delete-form {
    margin: 0;
}
body.page-index .index-notice-edit-btn,
body.page-index .index-notice-delete-btn {
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}
body.page-index .index-notice-edit-btn {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}
body.page-index .index-notice-edit-btn:hover {
    background: #dbeafe;
}
body.page-index .index-notice-delete-btn {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}
body.page-index .index-notice-delete-btn:hover {
    background: #fee2e2;
}
body.page-index .index-notice-list-card.has-edit h2 {
    padding-right: 96px;
}
body.page-index .index-notice-write-title {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d7dee8;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
}
body.page-index .index-notice-write-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
body.page-index .index-notice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
body.page-index .index-notice-list-card {
    padding: 16px;
}
body.page-index .index-notice-list-card time {
    display: block;
    margin-top: 12px;
    color: #64748b;
    font-size: 11px;
}

@media (min-width: 861px) {
    body.page-index .index-auth-layout {
        min-height: 640px;
    }
    body.page-index .index-notice-card {
        max-height: 100%;
    }
    body.page-index .index-notice-card .index-notice-content {
        flex: 1 1 auto;
        max-height: none;
    }
    body.page-index .index-auth-panel {
        grid-template-rows: auto 1fr;
    }
}

@media (max-width: 860px) {
    body.page-index .index-auth-layout {
        grid-template-columns: 1fr;
    }
    body.page-index .index-notice-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 비로그인(게스트) 로그인 화면: 상단바 없이 완전 중앙 정렬 ─────────────── */
body.index-guest .pb-topbar { display: none !important; }
body.index-guest.page-index .index-page-shell {
    padding: 24px 16px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.page-index .index-auth-solo {
    width: 100%;
    display: flex;
    justify-content: center;
}
body.page-index .index-auth-box {
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
body.page-index .index-auth-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
body.page-index .index-auth-ci {
    width: 60px;
    height: 60px;
    display: block;
}
body.page-index .index-auth-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #2a3340;
}
body.page-index .index-auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border, #e1e5eb);
}
body.page-index .index-auth-tab {
    flex: 1;
    padding: 11px 0;
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
}
body.page-index .index-auth-tab:hover { color: #64748b; }
body.page-index .index-auth-tab.is-active {
    color: #2a3340;
    border-bottom-color: #3e6ca6;
}
body.page-index .index-auth-panels .index-auth-card { margin: 0; }
body.page-index .index-auth-card[hidden] { display: none !important; }
body.page-index .index-auth-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: #94a3b8;
}
body.page-index .index-auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.page-index .index-auth-links a {
    color: #64748b;
    font-weight: 700;
    text-decoration: none;
}
body.page-index .index-auth-links a:hover {
    color: #3e6ca6;
    text-decoration: underline;
}

/* ── 로그인 후 공지: 3개 가로 박스(모바일 세로) ─────────────────────────── */
body.page-index .index-notice-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
body.page-index .index-notice-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border, #e1e5eb);
    border-radius: var(--radius-card, 12px);
    background: var(--surface, #fff);
    padding: 16px;
    box-sizing: border-box;
    min-width: 0;
}
body.page-index .index-notice-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border, #e1e5eb);
}
body.page-index .index-notice-card-head .index-notice-subject {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
body.page-index .index-notice-card-head .index-notice-subject::before {
    display: none;
}
body.page-index .index-notice-card-head .index-notice-date {
    flex: 0 0 auto;
    font-size: 12px;
    color: #94a3b8;
}
body.page-index .index-notice-card-body {
    flex: 1 1 auto;
    min-height: 0;
}
@media (max-width: 860px) {
    body.page-index .index-notice-cards {
        grid-template-columns: 1fr;
    }
    /* iOS Safari는 font-size가 16px 미만인 입력창에 포커스하면 화면을 자동 확대한다.
       모바일에서만 16px로 올려 로그인/회원가입 시 화면확대를 막는다(데스크톱은 12px 유지). */
    body.page-index .index-auth-card input {
        font-size: 16px;
    }
}
