/* ===================
   V3 Apply Pages
   =================== */

/* ===================
   1. 공통 컨테이너
   =================== */
.v3-apply-container {
    padding: 60px 0 100px;
    background: var(--v3-bg-section);
}

.v3-apply-content {
    max-width: 860px;
    margin: 0 auto;
}

/* ===================
   2. 폼 섹션
   =================== */
.v3-form-section {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.v3-form-section--info {
    background: var(--v3-primary-light);
}

.v3-form-section__title {
    font-family: var(--v3-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--v3-text);
    text-transform: none;
    letter-spacing: -0.2px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v3-form-section__title i {
    color: var(--v3-primary);
}

.v3-form-section__title .v3-required {
    font-size: 11px;
    font-weight: 700;
    background: var(--v3-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    letter-spacing: 0;
}

/* ===================
   3. 폼 그리드 / 행
   =================== */
.v3-form-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-form-row {
    display: grid;
    grid-template-columns: 148px 1fr;
    align-items: start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.v3-form-row:first-child { padding-top: 0; }
.v3-form-row:last-child { border-bottom: none; padding-bottom: 0; }

.v3-form-label {
    font-family: var(--v3-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--v3-text-muted);
    padding-top: 10px;
    line-height: 1.4;
}

.v3-form-value {
    font-family: var(--v3-font-body);
    font-size: 15px;
    color: var(--v3-text-body);
    line-height: 1.6;
}

.v3-required {
    color: #e53e3e;
    font-style: normal;
    margin-right: 2px;
}

/* ===================
   4. 입력 요소
   =================== */
.v3-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text);
    transition: all 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.v3-input:focus {
    outline: none;
    border-color: var(--v3-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(4, 195, 141, 0.10);
}

.v3-input:disabled {
    background: #f0f0f0;
    cursor: not-allowed;
    color: #bbb;
    border-color: #e8e8e8;
}

.v3-input--time {
    width: 52px;
    text-align: center;
    padding: 0 6px;
}

.v3-select {
    height: 42px;
    padding: 0 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.v3-select:focus {
    outline: none;
    border-color: var(--v3-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(4, 195, 141, 0.10);
}

.v3-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    background: #fafafa;
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text);
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
    transition: all 0.2s;
    box-sizing: border-box;
}

.v3-textarea:focus {
    outline: none;
    border-color: var(--v3-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(4, 195, 141, 0.10);
}

/* 이메일 */
.v3-email-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.v3-email-group .v3-input { width: 120px; flex-shrink: 0; }
.v3-at { font-size: 14px; font-weight: 600; color: var(--v3-text-muted); }

/* 날짜/시간 */
.v3-date-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.v3-date-group .v3-input { width: auto; }
.v3-date-label { font-size: 13px; color: var(--v3-text-muted); white-space: nowrap; }

.v3-form-hint {
    font-size: 12px;
    color: var(--v3-text-muted);
    margin-top: 6px;
    line-height: 1.6;
}

/* ===================
   5. 라디오
   =================== */
.v3-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding-top: 6px;
}

.v3-radio {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text-body);
    transition: color 0.2s;
}

.v3-radio input[type="radio"] { display: none; }

.v3-radio__mark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
    position: relative;
}

.v3-radio__mark::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--v3-primary);
    opacity: 0;
    transition: opacity 0.15s;
}

.v3-radio input:checked ~ .v3-radio__mark { border-color: var(--v3-primary); }
.v3-radio input:checked ~ .v3-radio__mark::after { opacity: 1; }
.v3-radio:has(input:checked) { color: var(--v3-text); font-weight: 500; }

/* ===================
   6. 체크박스
   =================== */
.v3-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-top: 16px;
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text);
    font-weight: 500;
}

.v3-checkbox input[type="checkbox"] { display: none; }

.v3-checkbox__mark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}

.v3-checkbox__mark::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
    opacity: 0;
    transition: opacity 0.15s;
}

.v3-checkbox input:checked ~ .v3-checkbox__mark { background: var(--v3-primary); border-color: var(--v3-primary); }
.v3-checkbox input:checked ~ .v3-checkbox__mark::after { opacity: 1; }

/* ===================
   7. 개인정보 박스
   =================== */
.v3-policy-box {
    max-height: 200px;
    overflow-y: auto;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
    background: #fafafa;
    font-family: var(--v3-font-body);
    font-size: 13px;
    line-height: 1.8;
    color: var(--v3-text-body);
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.v3-policy-box strong { color: var(--v3-text); }

.v3-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 12px;
}

.v3-policy-table th,
.v3-policy-table td {
    border: 1px solid #e0e0e0;
    padding: 7px 10px;
    text-align: center;
    vertical-align: middle;
}

.v3-policy-table th {
    background: var(--v3-primary-light);
    font-weight: 600;
    color: var(--v3-text);
}

/* ===================
   8. 안내 리스트
   =================== */
.v3-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: li-counter;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-info-list li {
    counter-increment: li-counter;
    font-family: var(--v3-font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--v3-text-body);
    padding-left: 22px;
    position: relative;
}

.v3-info-list li::before {
    content: counter(li-counter) ".";
    position: absolute;
    left: 0;
    color: var(--v3-primary);
    font-weight: 700;
}

/* ===================
   9. 제출 버튼
   =================== */
.v3-form-submit {
    display: flex;
    justify-content: center;
    padding: 24px 0 20px;
}

.v3-btn--lg {
    padding: 15px 60px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 100px;
}

/* ===================
   10. 컨설팅 방식 선택 — 심플 칩 스타일
   =================== */
.v3-way-selector {
    display: flex;
    gap: 8px;
}

.v3-way-option { cursor: pointer; }
.v3-way-option input[type="radio"] { display: none; }

.v3-way-option__card {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border: 1.5px solid #e0e0e0;
    border-radius: 100px;
    background: #fff;
    font-family: var(--v3-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--v3-text-muted);
    transition: all 0.2s;
    white-space: nowrap;
}

.v3-way-option__card i {
    font-size: 13px;
    color: #bbb;
    transition: color 0.2s;
}

.v3-way-option:hover .v3-way-option__card {
    border-color: var(--v3-primary);
    color: var(--v3-primary);
    background: var(--v3-primary-light);
}
.v3-way-option:hover .v3-way-option__card i { color: var(--v3-primary); }

.v3-way-option.active .v3-way-option__card {
    border-color: var(--v3-primary);
    background: var(--v3-primary);
    color: #fff;
    box-shadow: 0 2px 10px rgba(4, 195, 141, 0.25);
}
.v3-way-option.active .v3-way-option__card i { color: #fff; }

/* ===================
   11. 캘린더 + 시간
   =================== */
.v3-calendar-section {
    margin-top: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* 오버레이 */
.v3-calendar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 249, 250, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 10;
    border-radius: 20px;
    border: 2px dashed #e0e0e0;
    min-height: 200px;
}

.v3-calendar-overlay.v3-hidden { display: none; }

.v3-calendar-overlay i {
    font-size: 32px;
    color: var(--v3-primary);
    opacity: 0.5;
}

.v3-calendar-overlay p {
    font-family: var(--v3-font);
    font-size: 15px;
    font-weight: 600;
    color: #aaa;
    margin: 0;
}

/* 캘린더 외부 래퍼 */
.v3-calendar-inner {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.05);
}

/* 캘린더 상단 헤더 바 */
.v3-cal-wrap {
    background: #fff;
    padding: 20px 24px 0;
}

.v3-calendar-wrap {
    min-height: 260px;
    position: relative;
}

.v3-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* AJAX 생성 #box — 월 이동 헤더 */
.v3-calendar-wrap #box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 20px;
}

.v3-calendar-wrap #box > div#b1,
.v3-calendar-wrap #box > div#a1 {
    position: static;
    transform: none;
}

.v3-calendar-wrap #box h1 {
    font-family: var(--v3-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--v3-text);
    margin: 0;
    letter-spacing: -0.5px;
}

.v3-calendar-wrap #box button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--v3-bg-section);
    border: none;
    color: var(--v3-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.18s;
    font-size: 13px;
    padding: 0;
    line-height: 1;
}

.v3-calendar-wrap #box button:hover {
    background: var(--v3-primary);
    color: #fff;
}

/* 요일 헤더 (테이블 첫 행) */
.v3-calendar-wrap table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border: none;
}

.v3-calendar-wrap table,
.v3-calendar-wrap table tr,
.v3-calendar-wrap table tr td,
.v3-calendar-wrap table tr th {
    border: none;
}

.v3-calendar-wrap table tr:first-child td {
    font-family: var(--v3-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--v3-text-muted);
    text-align: center;
    padding: 0 0 14px;
    cursor: default;
    border: none;
    background: #fff;
}

.v3-calendar-wrap table tr:first-child td:first-child { color: #ef4444; }
.v3-calendar-wrap table tr:first-child td:last-child  { color: #3b82f6; }

/* 날짜 셀 — 라이트 배경 */
.v3-calendar-wrap table tr td {
    text-align: center;
    font-family: var(--v3-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--v3-text-body);
    background: #fff;
    border: none;
    padding: 3px;
    height: 44px;
    line-height: 44px;
    cursor: pointer;
    transition: all 0.15s;
    border-radius: 0;
}

.v3-calendar-wrap table tr:last-child td {
    padding-bottom: 16px;
    height: 56px;
    line-height: 40px;
    vertical-align: top;
}

.v3-calendar-wrap table tr td:hover:not(.not):not(.weekend):not(:empty) {
    color: var(--v3-primary);
    background: var(--v3-primary-light);
    font-weight: 700;
    border-radius: 10px;
}

.v3-calendar-wrap table tr td.active {
    color: #fff;
    font-weight: 800;
    background: var(--v3-primary);
    border-radius: 10px;
}

.v3-calendar-wrap table tr td.not,
.v3-calendar-wrap table tr td.weekend {
    color: #d1d5db;
    cursor: not-allowed;
}

.v3-calendar-wrap table tr td.saturday {
    color: #60a5fa;
}

/* ---- 시간 선택 영역 ---- */
.v3-time-wrap {
    background: #fafbfc;
    padding: 0;
    border-top: 1px solid #f0f0f0;
}

/* h4 — 선택 날짜 표시 */
.v3-time-wrap h4 {
    font-family: var(--v3-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--v3-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 0;
    padding: 18px 24px 14px;
    border-bottom: 1px solid #efefef;
}

.v3-time-wrap .time_btn_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 24px 22px;
}

.v3-time-wrap .login_alert {
    text-align: center;
    padding: 24px;
    color: var(--v3-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.v3-time-wrap .time_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 14px 8px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    background: #fff;
    font-family: var(--v3-font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--v3-text);
    cursor: pointer;
    transition: all 0.18s;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.v3-time-wrap .time_btn::after {
    content: attr(data-time) "시";
    font-size: 11px;
    font-weight: 500;
    color: var(--v3-text-muted);
}

.v3-time-wrap .time_btn:hover:not(:disabled) {
    border-color: var(--v3-primary);
    background: var(--v3-primary-light);
    color: var(--v3-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4,195,141,0.15);
}

.v3-time-wrap .time_btn:hover:not(:disabled)::after {
    color: var(--v3-primary);
}

.v3-time-wrap .time_btn.selected {
    background: var(--v3-primary);
    border-color: var(--v3-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(4,195,141,0.3);
}

.v3-time-wrap .time_btn.selected::after {
    color: rgba(255,255,255,0.7);
}

.v3-time-wrap .time_btn.full {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
    transform: none;
    box-shadow: none;
}

/* ===================
   12. 특강 검색
   =================== */
.v3-search-box {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.v3-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.v3-search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-search-label {
    font-family: var(--v3-font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--v3-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.v3-search-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v3-search-inputs .v3-input { flex: 1; }
.v3-range-sep { font-size: 13px; font-weight: 600; color: var(--v3-text-muted); flex-shrink: 0; }

.v3-search-submit {
    display: flex;
    justify-content: center;
}

.v3-search-submit .v3-btn {
    padding: 11px 36px;
    font-size: 14px;
    gap: 7px;
    display: inline-flex;
    align-items: center;
}

/* ===================
   13. 특강 목록 테이블
   =================== */
.v3-table-wrap {
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
}

.v3-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--v3-font-body);
    font-size: 14px;
}

.v3-table thead tr {
    border-bottom: 1px solid #f0f0f0;
}

.v3-table thead th {
    padding: 14px 20px;
    font-family: var(--v3-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--v3-text-muted);
    text-align: center;
    background: #fafafa;
}

.v3-table__name { text-align: left !important; }

.v3-table tbody tr {
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.v3-table tbody tr:last-child { border-bottom: none; }
.v3-table tbody tr:hover { background: var(--v3-primary-light); }

.v3-table tbody td {
    padding: 16px 20px;
    text-align: center;
    color: var(--v3-text-body);
    vertical-align: middle;
}

.v3-table tbody td.name {
    text-align: left;
    font-weight: 600;
    color: var(--v3-text);
    font-size: 15px;
}

.v3-table__mobile {
    display: none;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--v3-text-muted);
    font-weight: 400;
}

.v3-table__mobile span { display: flex; align-items: center; gap: 5px; }
.v3-table__mobile i { color: var(--v3-primary); font-size: 11px; width: 12px; }

.v3-table__empty {
    text-align: center !important;
    padding: 56px 20px !important;
    color: var(--v3-text-muted);
}

.v3-table__empty i { font-size: 36px; margin-bottom: 10px; display: block; color: #e0e0e0; }
.v3-table__empty p { font-size: 15px; margin: 0; }

.v3-btn--sm {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
}

/* ===================
   14. AI 면접 체험
   =================== */
.v3-ie-desc {
    font-family: var(--v3-font-body);
    font-size: 14px;
    color: var(--v3-text-muted);
    margin-bottom: 20px;
}

.v3-code-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v3-code-input {
    max-width: 240px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    color: var(--v3-text-muted);
    cursor: not-allowed;
}

.v3-code-input.revealed {
    color: var(--v3-primary);
    background: var(--v3-primary-light);
    border-color: var(--v3-primary);
    letter-spacing: 2px;
}

.v3-ie-process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    padding-bottom: 4px;
}

.v3-ie-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    min-width: 0;
}

.v3-ie-step__img {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: transform 0.25s, box-shadow 0.25s;
}

.v3-ie-step__img:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.v3-ie-step__img img {
    width: 100%;
    height: 160%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.v3-ie-step__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--v3-primary);
    color: #fff;
    font-family: var(--v3-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 100px;
    line-height: 1.4;
}

.v3-ie-step__label {
    font-family: var(--v3-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--v3-text);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.v3-ie-step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 140px;
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}

.v3-ie-jobda {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    padding-bottom: 12px;
}

.v3-ie-jobda .v3-btn--lg { gap: 8px; display: inline-flex; align-items: center; }

/* ===================
   15. Responsive
   =================== */
@media (max-width: 1024px) {
    .v3-form-section { padding: 26px 28px; }
    .v3-cal-wrap { padding: 20px 22px 0; }
    .v3-time-wrap h4 { padding: 16px 22px 12px; }
    .v3-time-wrap .time_btn_container { padding: 14px 22px 20px; }
}

@media (max-width: 768px) {
    .v3-apply-container { padding: 24px 0 60px; }
    .v3-form-section { padding: 20px 18px; border-radius: 14px; }
    .v3-form-section__title { font-size: 13px; margin-bottom: 18px; }
    .v3-form-row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
    .v3-form-label { padding-top: 0; }
    .v3-email-group .v3-input { width: 100px; }
    .v3-search-grid { grid-template-columns: 1fr; gap: 14px; }
    .v3-table thead th.date,
    .v3-table thead th.time,
    .v3-table thead th.place,
    .v3-table thead th.btn { display: none; }
    .v3-table tbody td.date,
    .v3-table tbody td.time,
    .v3-table tbody td.place,
    .v3-table tbody td.btn { display: none; }
    .v3-table__mobile { display: flex; }
    .v3-ie-process { gap: 0; justify-content: flex-start; }
    .v3-ie-step__img { width: 110px; height: 110px; border-radius: 12px; }
    .v3-ie-step__arrow { height: 110px; padding: 0 4px; font-size: 10px; }
    .v3-ie-step__label { font-size: 11px; }
    .v3-ie-step__badge { font-size: 9px; padding: 2px 8px; }
    .v3-code-group { flex-wrap: wrap; }
    .v3-code-input { max-width: 100%; }
    .v3-cal-wrap { padding: 16px 16px 0; }
    .v3-calendar-wrap #box { padding: 0 0 16px; }
    .v3-calendar-wrap #box h1 { font-size: 17px; }
    .v3-calendar-wrap table tr td { height: 38px; line-height: 38px; font-size: 13px; }
    .v3-time-wrap h4 { padding: 14px 16px 10px; }
    .v3-time-wrap .time_btn_container { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 16px 18px; }
    .v3-time-wrap .time_btn { padding: 12px 6px; font-size: 14px; }
}

/* ===================
   16. 구 apply.css 다크 스타일 리셋
   기존 assets_new/css/apply.css의 다크 인풋 스타일을 v3 페이지에서 덮어씀
   form#apply_form ID 선택자보다 특이도를 높이기 위해 ID 포함
   =================== */
.v3-apply-container input[type="date"],
.v3-apply-container input[type="text"],
.v3-apply-container select,
.v3-apply-container textarea,
.v3-apply-container form#apply_form input[type="text"],
.v3-apply-container form#apply_form input[type="date"],
.v3-apply-container form#apply_form select,
.v3-apply-container form#apply_form textarea {
    background: #fafafa;
    background-color: #fafafa;
    color: var(--v3-text);
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    height: 42px;
    padding: 0 14px;
    font-family: var(--v3-font-body);
    font-size: 14px;
}

.v3-apply-container form#apply_form textarea {
    height: auto;
    padding: 12px 14px;
    min-height: 110px;
    line-height: 1.6;
    resize: vertical;
}

.v3-apply-container input[type="date"]:focus,
.v3-apply-container input[type="text"]:focus,
.v3-apply-container select:focus,
.v3-apply-container textarea:focus,
.v3-apply-container form#apply_form input[type="text"]:focus,
.v3-apply-container form#apply_form input[type="date"]:focus,
.v3-apply-container form#apply_form select:focus,
.v3-apply-container form#apply_form textarea:focus {
    background: #fff;
    background-color: #fff;
    border-color: var(--v3-primary);
    color: var(--v3-text);
    box-shadow: 0 0 0 3px rgba(4, 195, 141, 0.10);
    outline: none;
}

.v3-apply-container select,
.v3-apply-container form#apply_form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
}

/* apply_form 레거시 다크 테마 전체 리셋 */
.v3-apply-container form#apply_form > section {
    background: transparent;
    border-top: none;
    padding: 0;
}

.v3-apply-container form#apply_form > section > dl > dt {
    color: var(--v3-text);
}

.v3-apply-container form#apply_form > section > dl dd {
    color: var(--v3-text-body);
}

.v3-apply-container form#apply_form > section > dl dd label {
    color: var(--v3-text-body);
}

.v3-apply-container form#apply_form > section .policy_container .description {
    background: #fafafa;
    border-color: #e8e8e8;
    color: var(--v3-text-body);
}

.v3-apply-container form#apply_form > section .policy_container .description * {
    color: var(--v3-text-body);
}

.v3-apply-container form#apply_form > section .policy_container label {
    color: var(--v3-text);
}

/* 검색 폼 특정 오버라이드 */
#ai_i_a_search_form input[type="date"],
#ai_i_a_search_form select {
    background: #fafafa;
    background-color: #fafafa;
    color: var(--v3-text);
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    height: 42px;
    font-size: 14px;
    font-family: var(--v3-font-body);
}

@media (max-width: 480px) {
    .v3-form-section { padding: 18px 14px; }
    .v3-way-selector { gap: 6px; }
    .v3-way-option__card { padding: 8px 14px; font-size: 13px; }
    .v3-search-inputs { flex-direction: column; align-items: stretch; }
    .v3-range-sep { text-align: center; }
    .v3-calendar-overlay p { font-size: 14px; }
    .v3-ie-process { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .v3-ie-step__arrow { display: none; }
    .v3-ie-step__img { width: 100px; height: 100px; }
    .v3-ie-step { width: calc(33.33% - 8px); }
}

/* ===================
   17. 희망기업군~유입경로 필드 숨김
   =================== */
.v3-form-row:has(.v3-form-label:is(
    [class]
)) ~ .v3-form-row {
    /* fallback below */
}

/* 희망기업군, 희망직군, 전공계열, 유입경로 숨김 */
.v3-form-row--hide-field {
    display: none;
}

/* ===================
   18. 전반적 디자인 세련화
   =================== */

/* 캘린더 전체 래퍼 그림자 강화 */
.v3-calendar-inner {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.03);
}

/* 캘린더 마지막 행 여백 */
.v3-calendar-wrap table tr:last-child td {
    padding-bottom: 12px;
}

/* 폼 섹션 호버 효과 */
.v3-form-section {
    transition: box-shadow 0.25s;
}

.v3-form-section:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
}

/* 방식 선택 칩 간격 개선 */
.v3-way-selector {
    gap: 10px;
}

/* 시간 버튼 개선 */
.v3-time-wrap .time_btn {
    border-radius: 14px;
    border: 1.5px solid #eee;
}

/* 신청 버튼 개선 */
.v3-form-submit .v3-btn--lg {
    padding: 16px 72px;
    font-size: 17px;
    box-shadow: 0 4px 16px rgba(4, 195, 141, 0.25);
    transition: all 0.25s;
}

.v3-form-submit .v3-btn--lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 195, 141, 0.35);
}
