﻿:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;
    --dark: #111827;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --red: #ef4444;
    --green: #16a34a;
    --yellow: #f59e0b;
    --radius: 18px;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
    color: var(--gray-900);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32rem),
        linear-gradient(180deg, #f8fbff 0%, #f5f6f8 42%, #f9fafb 100%);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -1.3px;
    color: var(--primary);
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
}

.nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--gray-700);
}

.nav a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    white-space: nowrap;
}

.user-menu a {
    padding: 8px 10px;
    border-radius: 10px;
}

.user-menu a:hover {
    background: var(--gray-100);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 18px;
}

.footer {
    margin-top: 70px;
    background: #fff;
    border-top: 1px solid var(--gray-200);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 18px;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.8;
}

.card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.card-flat {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 22px;
}

.page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.page-title {
    margin: 0;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -1.2px;
}

.page-desc {
    margin: 8px 0 0;
    color: var(--gray-500);
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-weight: 850;
    font-size: 15px;
    line-height: 1;
    transition: 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-line {
    background: #fff;
    border: 1px solid var(--gray-300);
    color: var(--gray-800);
}

.btn-soft {
    background: var(--primary-soft);
    color: var(--primary);
}

.btn-danger {
    background: var(--red);
    color: #fff;
}

.form-wrap {
    max-width: 620px;
    margin: 0 auto;
}

.form-title {
    font-size: 30px;
    font-weight: 950;
    margin: 0 0 20px;
    letter-spacing: -1.2px;
}

.form-section-title {
    margin: 30px 0 14px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-200);
    font-size: 18px;
    font-weight: 950;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 850;
    color: var(--gray-800);
}

.input,
.select,
.textarea {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 13px;
    background: #fff;
    font-size: 15px;
    color: var(--gray-900);
    outline: none;
    transition: 0.16s ease;
}

.input,
.select {
    height: 48px;
    padding: 0 13px;
}

.textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
    line-height: 1.7;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.help-text {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.search-box {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 180px 180px 120px;
    gap: 10px;
}

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

.job-card {
    display: grid;
    grid-template-columns: 128px 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
    transition: 0.18s ease;
}

.job-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.job-thumb {
    width: 128px;
    height: 96px;
    border-radius: 15px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 950;
    font-size: 18px;
}

.job-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.8px;
}

.job-company {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 750;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
}

.badge-primary {
    background: var(--primary-soft);
    color: var(--primary);
}

.badge-green {
    background: #ecfdf5;
    color: var(--green);
}

.badge-yellow {
    background: #fffbeb;
    color: #b45309;
}

.job-pay {
    min-width: 110px;
    text-align: right;
}

.job-pay-type {
    display: block;
    margin-bottom: 5px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 800;
}

.job-pay-amount {
    color: var(--primary);
    font-size: 21px;
    font-weight: 950;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

.detail-thumb {
    width: 100%;
    min-height: 260px;
    border-radius: 20px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f3f4f6);
}

.detail-title {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -1.4px;
    line-height: 1.28;
}

.info-table {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-top: 1px solid var(--gray-200);
    margin-top: 18px;
}

.info-table dt,
.info-table dd {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray-200);
    line-height: 1.6;
}

.info-table dt {
    color: var(--gray-500);
    font-weight: 850;
}

.info-table dd {
    color: var(--gray-900);
    font-weight: 650;
}

.content-box {
    line-height: 1.85;
    color: var(--gray-800);
    white-space: pre-line;
}

.empty-box {
    padding: 46px 20px;
    text-align: center;
    background: #fff;
    border: 1px dashed var(--gray-300);
    border-radius: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

.table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.data-table th,
.data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    text-align: left;
}

.data-table th {
    background: var(--gray-50);
    color: var(--gray-600);
    font-weight: 900;
}

.data-table td {
    color: var(--gray-800);
}

.paging {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
}

.paging a,
.paging strong {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: #fff;
    font-size: 14px;
    font-weight: 850;
}

.paging strong {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 900px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .user-menu {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .search-box {
        grid-template-columns: 1fr 1fr;
    }

    .job-card {
        grid-template-columns: 96px 1fr;
    }

    .job-thumb {
        width: 96px;
        height: 82px;
    }

    .job-pay {
        grid-column: 1 / -1;
        text-align: left;
        border-top: 1px solid var(--gray-200);
        padding-top: 12px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px 14px;
    }

    .card {
        padding: 20px;
        border-radius: 16px;
    }

    .page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-title {
        font-size: 25px;
    }

    .form-title {
        font-size: 25px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .job-card {
        grid-template-columns: 1fr;
    }

    .job-thumb {
        width: 100%;
        height: 150px;
    }

    .detail-title {
        font-size: 25px;
    }

    .info-table {
        grid-template-columns: 95px 1fr;
    }
}

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

.resume-card {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.resume-photo {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 950;
}

.status-select {
    height: 38px;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 0 10px;
    font-weight: 700;
    background: #fff;
}

.apply-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    background: var(--gray-100);
    color: var(--gray-700);
}

.apply-status.received {
    background: var(--primary-soft);
    color: var(--primary);
}

.apply-status.reviewing {
    background: #fffbeb;
    color: #b45309;
}

.apply-status.interview {
    background: #f5f3ff;
    color: #7c3aed;
}

.apply-status.pass {
    background: #ecfdf5;
    color: #16a34a;
}

.apply-status.fail {
    background: #fef2f2;
    color: #dc2626;
}

.resume-view-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 22px;
}

.resume-big-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    font-weight: 950;
}

@media (max-width: 760px) {
    .resume-card {
        grid-template-columns: 72px 1fr;
    }

    .resume-photo {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .resume-card > div:last-child {
        grid-column: 1 / -1;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .resume-view-grid {
        grid-template-columns: 1fr;
    }
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.stat-label {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 900;
}

.stat-value {
    margin-top: 8px;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -1px;
    color: var(--gray-900);
}

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-box {
    width: 100%;
    max-width: 420px;
}

.status-active,
.status-approved {
    background: #ecfdf5;
    color: #16a34a;
}

.status-wait {
    background: #fffbeb;
    color: #b45309;
}

.status-closed,
.status-stop {
    background: #f3f4f6;
    color: #4b5563;
}

.status-rejected,
.status-deleted,
.status-block {
    background: #fef2f2;
    color: #dc2626;
}

.admin-action-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.board-list {
    display: grid;
    gap: 12px;
}

.board-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.board-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.6px;
}

.board-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 750;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
}

.faq-q {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 950;
}

.faq-a {
    line-height: 1.8;
    white-space: pre-line;
    color: var(--gray-700);
}

.status-answered,
.status-done {
    background: #ecfdf5;
    color: #16a34a;
}

.status-processing {
    background: #f5f3ff;
    color: #7c3aed;
}

.status-wait {
    background: #fffbeb;
    color: #b45309;
}

.status-rejected {
    background: #fef2f2;
    color: #dc2626;
}

.board-admin-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .board-card {
        grid-template-columns: 1fr;
    }

    .board-admin-actions {
        justify-content: flex-start;
    }
}

/* =========================================================
   5단계 디자인 보강 + 테이블 가운데 정렬
   적용 위치: /assets/css/style.css 맨 아래
========================================================= */

/* 전체 페이지 톤 보강 */
body {
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.10), transparent 32rem),
        radial-gradient(circle at 92% 10%, rgba(59, 130, 246, 0.08), transparent 28rem),
        linear-gradient(180deg, #f8fbff 0%, #f6f8fc 45%, #f9fafb 100%);
}

/* 공통 카드 더 깔끔하게 */
.card,
.card-flat,
.stat-card,
.board-card,
.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.card:hover,
.card-flat:hover,
.board-card:hover,
.faq-item:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

/* 페이지 제목 영역 */
.page-head {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
}

.page-title {
    color: #0f172a;
}

.page-desc {
    color: #64748b;
}

/* 검색 박스 디자인 */
.search-box {
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.input,
.select,
.textarea,
.status-select {
    border-color: #dbe3ef;
    background: #ffffff;
}

.input:hover,
.select:hover,
.textarea:hover,
.status-select:hover {
    border-color: #93c5fd;
}

/* 버튼 디자인 */
.btn {
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-dark {
    background: linear-gradient(135deg, #111827, #020617);
}

.btn-soft {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.btn-line {
    border: 1px solid #cbd5e1;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* =========================================================
   테이블 가운데 정렬 핵심
========================================================= */

.table-wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

/* 테이블 자체 가운데 */
.data-table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: separate;
    border-spacing: 0;
}

/* th, td 전체 가운데 정렬 */
.data-table th,
.data-table td {
    text-align: center !important;
    vertical-align: middle !important;
    padding: 15px 12px;
    border-bottom: 1px solid #edf2f7;
}

/* 헤더 디자인 */
.data-table th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    color: #334155;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

/* 데이터 셀 */
.data-table td {
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

/* 행 hover */
.data-table tbody tr {
    transition: background 0.16s ease, transform 0.16s ease;
}

.data-table tbody tr:hover {
    background: #f8fbff;
}

/* 마지막 줄 border 제거 */
.data-table tbody tr:last-child td {
    border-bottom: 0;
}

/* 테이블 안 제목도 가운데 */
.data-table td strong {
    color: #0f172a;
    font-weight: 950;
}

/* 테이블 안 작은 텍스트 */
.data-table .help-text {
    display: inline-block;
    margin-top: 4px;
    color: #64748b;
}

/* 관리 버튼 가운데 정렬 */
.board-admin-actions,
.admin-action-form {
    justify-content: center;
}

/* 테이블 안 버튼 크기 정돈 */
.data-table .btn {
    min-height: 34px !important;
    padding: 0 13px;
    font-size: 13px;
}

/* 긴 제목도 가운데 정렬하되 줄바꿈 자연스럽게 */
.data-table td a,
.data-table td strong {
    word-break: keep-all;
    line-height: 1.45;
}

/* 상태 배지 */
.badge,
.apply-status {
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* 상태 컬러 보강 */
.status-active {
    background: #ecfdf5;
    color: #15803d;
}

.status-wait {
    background: #fffbeb;
    color: #b45309;
}

.status-answered,
.status-done,
.status-approved {
    background: #ecfdf5;
    color: #15803d;
}

.status-processing {
    background: #f5f3ff;
    color: #7c3aed;
}

.status-rejected,
.status-deleted,
.status-block {
    background: #fef2f2;
    color: #dc2626;
}

.status-stop,
.status-closed {
    background: #f1f5f9;
    color: #475569;
}

/* 게시판 카드 */
.board-list {
    margin-top: 14px;
}

.board-card {
    border-radius: 20px;
    padding: 20px 22px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
}

.board-card:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
}

.board-title {
    color: #0f172a;
    line-height: 1.45;
}

.board-meta {
    justify-content: flex-start;
}

/* FAQ */
.faq-item {
    border-radius: 20px;
    background: #ffffff;
}

.faq-q {
    color: #0f172a;
}

.faq-a {
    color: #475569;
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
}

/* 대시보드 통계 */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -28px;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
}

.stat-label {
    color: #64748b;
}

.stat-value {
    color: #1d4ed8;
}

/* 페이징 */
.paging {
    margin-top: 26px;
}

.paging a,
.paging strong {
    border-radius: 999px;
    border-color: #dbe3ef;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.paging a:hover {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.paging strong {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: #1d4ed8;
}

/* 모바일 테이블 대응 */
@media (max-width: 760px) {
    .table-wrap {
        border-radius: 16px;
    }

    .data-table {
        min-width: 760px;
    }

    .data-table th,
    .data-table td {
        padding: 13px 10px;
        font-size: 13px;
    }

    .page-head {
        padding: 18px;
        border-radius: 18px;
    }

    .search-box {
        border-radius: 16px;
    }
}

.td-left {
    text-align: left !important;
}

.status-paid {
    background: #ecfdf5;
    color: #15803d;
}

.status-cancel {
    background: #f1f5f9;
    color: #475569;
}

.status-refund {
    background: #fef2f2;
    color: #dc2626;
}

.product-price-card {
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 22px;
}

.promo-job-card {
    border-color: #bfdbfe !important;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10) !important;
}

/* =========================================================
   8단계 인재검색 / 이력서 / 스크랩
========================================================= */

.resume-search-card {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.resume-search-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.resume-mini-photo {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: 950;
    font-size: 14px;
}

.resume-action-box {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.resume-profile-head {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}

.resume-profile-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: 950;
    font-size: 26px;
}

.scrap-on {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.status-hidden {
    background: #f1f5f9;
    color: #475569;
}

.resume-section {
    margin-top: 18px;
}

@media (max-width: 760px) {
    .resume-search-card {
        grid-template-columns: 72px 1fr;
    }

    .resume-mini-photo {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .resume-action-box {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .resume-profile-head {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   9단계 알림센터
========================================================= */

.noti-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.noti-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.noti-card.is-unread {
    border-color: #93c5fd;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.noti-title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.noti-message {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
}

.noti-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.noti-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.noti-dot {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2563eb;
    margin-right: 6px;
}

.noti-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    margin-left: 4px;
}

.status-n {
    background: #eff6ff;
    color: #1d4ed8;
}

.status-y {
    background: #f1f5f9;
    color: #475569;
}

@media (max-width: 680px) {
    .noti-card {
        grid-template-columns: 1fr;
    }

    .noti-actions {
        justify-content: flex-start;
    }
}

/* =========================================================
   10단계 쪽지 / 채팅형 문의
========================================================= */

.msg-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.msg-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.msg-card.is-unread {
    background: linear-gradient(135deg, #eff6ff, #fff);
    border-color: #93c5fd;
}

.msg-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.msg-preview {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
}

.msg-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.msg-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.chat-wrap {
    display: grid;
    gap: 14px;
}

.chat-row {
    display: flex;
}

.chat-row.mine {
    justify-content: flex-end;
}

.chat-row.other {
    justify-content: flex-start;
}

.chat-bubble {
    max-width: min(680px, 86%);
    padding: 15px 17px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.chat-row.mine .chat-bubble {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border-color: #1d4ed8;
}

.chat-sender {
    font-weight: 950;
    font-size: 13px;
    margin-bottom: 6px;
}

.chat-body {
    line-height: 1.75;
    white-space: pre-line;
}

.chat-date {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.75;
}

@media (max-width: 680px) {
    .msg-card {
        grid-template-columns: 1fr;
    }

    .msg-actions {
        justify-content: flex-start;
    }

    .chat-bubble {
        max-width: 94%;
    }
}

/* =========================================================
   채팅창 자동 새로고침
========================================================= */

.chat-auto-box {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.chat-refresh-state {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 13px;
    font-weight: 850;
}

.chat-refresh-state.is-live {
    background: #ecfdf5;
    color: #15803d;
    border-color: #bbf7d0;
}

.chat-refresh-state.is-error {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}

.chat-new-marker {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    margin-right: 6px;
}

/* =========================================================
   회원가입 약관 동의
========================================================= */

.terms-box {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.terms-all {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #bfdbfe;
}

.terms-item {
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
}

.terms-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.terms-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.terms-label input {
    width: 18px;
    height: 18px;
}

.terms-required {
    color: #dc2626;
    font-size: 13px;
    font-weight: 900;
}

.terms-optional {
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.terms-content {
    display: none;
    margin-top: 12px;
    max-height: 180px;
    overflow-y: auto;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    line-height: 1.75;
    white-space: pre-line;
    font-size: 14px;
}

.terms-content.is-open {
    display: block;
}

.terms-view-btn {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    font-weight: 850;
    cursor: pointer;
}

.status-withdraw {
    background: #f1f5f9;
    color: #475569;
}

.status-block {
    background: #fef2f2;
    color: #dc2626;
}

.status-deleted {
    background: #111827;
    color: #ffffff;
}

/* =========================================================
   Admin sidebar group menu + mobile hamburger
   기준 HTML: /admin/inc/admin_header.asp
========================================================= */

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0;
    background: #f8fafc;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    width: 260px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 16rem),
        linear-gradient(180deg, #0f172a, #020617);
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.admin-sidebar-head {
    min-height: 68px;
    padding: 18px 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-sidebar .admin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    margin: 0;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.admin-sidebar .admin-menu {
    display: grid;
    gap: 6px;
    padding: 10px 12px 24px;
    overflow: visible;
    white-space: normal;
}

.admin-sidebar .admin-menu a {
    display: flex;
    color: inherit;
}

.admin-sidebar .admin-menu-link,
.admin-sidebar .admin-menu-parent {
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    margin: 0;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    cursor: pointer;
    text-align: left;
    white-space: normal;
    box-shadow: none;
}

.admin-sidebar .admin-menu-link:hover,
.admin-sidebar .admin-menu-parent:hover,
.admin-sidebar .admin-menu-link.is-active,
.admin-sidebar .admin-menu-group.is-open > .admin-menu-parent {
    background: rgba(37, 99, 235, 0.22);
    color: #ffffff;
}

.admin-sidebar .admin-menu-group {
    position: static;
    display: block;
    margin: 0;
}

.admin-sidebar .admin-menu-arrow {
    margin-left: auto;
    font-size: 13px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.admin-sidebar .admin-menu-group.is-open > .admin-menu-parent .admin-menu-arrow,
.admin-sidebar .admin-menu-group.mobile-open > .admin-menu-parent .admin-menu-arrow {
    transform: rotate(180deg);
}

.admin-sidebar .admin-submenu {
    position: static;
    display: none;
    gap: 4px;
    min-width: 0;
    max-height: none;
    padding: 5px 0 6px 12px;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.admin-sidebar .admin-menu-group.is-open .admin-submenu,
.admin-sidebar .admin-menu-group.mobile-open .admin-submenu {
    display: grid;
}

.admin-sidebar .admin-sub-link {
    width: 100%;
    min-height: 36px;
    padding: 0 12px;
    margin: 0;
    border: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: normal;
    box-shadow: none;
}

.admin-sidebar .admin-sub-link:hover,
.admin-sidebar .admin-sub-link.is-active {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.admin-sidebar .admin-menu-logout {
    margin-top: 8px;
    background: rgba(239, 68, 68, 0.16);
    color: #fecaca;
}

.admin-sidebar .admin-menu-logout:hover {
    background: rgba(239, 68, 68, 0.28);
    color: #ffffff;
}

.admin-main {
    min-width: 0;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30rem),
        #f9fafb;
}

.admin-top {
    position: sticky;
    top: 0;
    z-index: 800;
    min-height: 68px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.admin-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-content {
    padding: 24px;
}

.admin-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
}

.admin-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.admin-menu-close {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.admin-mobile-overlay {
    display: none;
}

body.admin-menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .admin-shell {
        display: block;
        min-height: 100vh;
    }

    .admin-sidebar {
        position: fixed;
        left: -310px;
        top: 0;
        width: 300px;
        max-width: 84vw;
        height: 100vh;
        transition: left 0.24s ease;
        box-shadow: 24px 0 60px rgba(15, 23, 42, 0.35);
        z-index: 2000;
    }

    .admin-sidebar.is-show {
        left: 0;
    }

    .admin-menu-toggle {
        display: inline-flex;
    }

    .admin-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .admin-mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1900;
        background: rgba(15, 23, 42, 0.52);
    }

    .admin-mobile-overlay.is-show {
        display: block;
    }

    .admin-top {
        min-height: auto;
        padding: 12px 14px;
        align-items: center;
    }

    .admin-top > div:last-child {
        gap: 6px !important;
    }

    .admin-top .btn {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

    .admin-content {
        padding: 16px 14px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .admin-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   지역알바 / 직종알바
========================================================= */

.job-filter-hero {
    padding: 34px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 26rem),
        linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #dbeafe;
    margin-bottom: 22px;
}

.job-filter-hero h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.06em;
}

.job-filter-hero p {
    margin: 10px 0 0;
    color: #475569;
    line-height: 1.7;
}

.filter-chip-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 22px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.job-list-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
    margin-bottom: 12px;
}

.job-list-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.10);
}

.job-list-title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.job-list-company {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.job-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

@media (max-width: 720px) {
    .job-filter-hero {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .job-filter-hero h1 {
        font-size: 26px;
    }

    .job-list-card {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   메인 슬라이딩 배너
   PC: 동그라미 인디케이터 표시
   모바일: 손가락 좌우 스와이프 가능, 인디케이터 숨김
========================================================= */

.main-banner-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

.main-banner-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.main-banner-track {
    display: flex;
    width: 100%;
    transition: transform 0.42s ease;
    will-change: transform;
}

.main-banner-slide {
    flex: 0 0 100%;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #f8fafc;
    text-decoration: none;
}

.main-banner-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.main-banner-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.main-banner-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.main-banner-dots button.is-active {
    width: 28px;
    background: #2563eb;
}

@media (max-width: 780px) {
    .main-banner-slider {
        padding: 10px;
        border-radius: 22px;
        touch-action: pan-y;
    }

    .main-banner-viewport,
    .main-banner-slide {
        border-radius: 16px;
    }

    .main-banner-slide img {
        height: 180px;
    }

    .main-banner-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-banner-slide img {
        height: 150px;
    }
}


.main-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 42px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 28rem),
        linear-gradient(135deg, #eff6ff, #ffffff);
    border: 1px solid #dbeafe;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
}

.main-hero-content {
    max-width: 720px;
}

.main-hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 950;
}

.main-hero h1 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 44px;
    font-weight: 950;
    line-height: 1.18;
    letter-spacing: -0.075em;
}

.main-hero p {
    margin: 0 0 26px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.main-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.premium-section {
    margin: 34px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title {
    margin: 0;
    color: #0f172a;
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.section-desc {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.premium-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.065);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    border-color: #bfdbfe;
    box-shadow: 0 24px 54px rgba(37, 99, 235, 0.16);
}

.premium-thumb {
    position: relative;
    height: 150px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.25), transparent 12rem),
        linear-gradient(135deg, #eff6ff, #ffffff);
    overflow: hidden;
}

.premium-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-thumb-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-thumb-empty span {
    display: inline-flex;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #ffffff;
    font-weight: 950;
    letter-spacing: -0.03em;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.premium-ribbon {
    position: absolute;
    left: 12px;
    top: 12px;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.premium-top {
    background: #2563eb;
}

.premium-urgent {
    background: #ef4444;
}

.premium-highlight {
    background: #f59e0b;
}

.premium-banner {
    background: #7c3aed;
}

.premium-body {
    padding: 17px 17px 18px;
}

.premium-company {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
}

.premium-title {
    margin: 0;
    min-height: 50px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 950;
    line-height: 1.45;
    letter-spacing: -0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.premium-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
}

.premium-pay {
    margin-top: 14px;
    color: #334155;
    font-size: 14px;
    font-weight: 850;
}

.premium-pay strong {
    margin-left: 4px;
    color: #dc2626;
    font-size: 18px;
    font-weight: 950;
}

.premium-deadline {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
}

.main-join-card {
    min-height: 180px;
}

@media (max-width: 1100px) {
    .premium-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .main-hero {
        padding: 34px 24px;
        border-radius: 26px;
    }

    .main-hero h1 {
        font-size: 34px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .premium-thumb {
        height: 130px;
    }
}

@media (max-width: 520px) {
    .main-hero {
        padding: 28px 20px;
    }

    .main-hero h1 {
        font-size: 30px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-title {
        min-height: auto;
    }
}

/* =========================================================
   메인 레이어 팝업
========================================================= */

.layer-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(4px);
}

.layer-popup-overlay.is-hide {
    display: none;
}

body.layer-popup-open {
    overflow: hidden;
}

.layer-popup-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: 1180px;
}

.layer-popup {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.32);
}

.layer-popup.is-hide {
    display: none;
}

.layer-popup-head {
    min-height: 56px;
    padding: 0 16px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.layer-popup-head strong {
    color: #0f172a;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.layer-popup-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.layer-popup-close:hover {
    background: #e2e8f0;
}

.layer-popup-body {
    overflow-y: auto;
    background: #ffffff;
}

.layer-popup-img {
    display: block;
    width: 100%;
    height: auto;
}

.layer-popup-content {
    padding: 22px;
    color: #334155;
    font-size: 15px;
    line-height: 1.75;
}

.layer-popup-content img {
    max-width: 100%;
    height: auto;
}

.layer-popup-content p {
    margin-top: 0;
}

.layer-popup-foot {
    min-height: 56px;
    padding: 10px 14px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.layer-popup-today {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.layer-popup-today input {
    width: 16px;
    height: 16px;
}

.layer-popup-close-btn {
    min-height: 36px;
    padding-left: 16px;
    padding-right: 16px;
}

@media (max-width: 780px) {
    .layer-popup-overlay {
        align-items: flex-end;
        padding: 12px;
    }

    .layer-popup-stack {
        display: grid;
        gap: 12px;
        max-width: none;
    }

    .layer-popup {
        max-width: 100% !important;
        border-radius: 22px;
    }

    .layer-popup-head {
        min-height: 52px;
    }

    .layer-popup-body {
        max-height: 62vh !important;
    }

    .layer-popup-content {
        padding: 18px;
        font-size: 14px;
    }

    .layer-popup-foot {
        align-items: stretch;
        flex-direction: column;
    }

    .layer-popup-close-btn {
        width: 100%;
    }
}

/* =========================================================
   프리미엄 채용관 - 상품별 구역
========================================================= */

.premium-product-section {
    margin-top: 22px;
    padding: 22px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22rem),
        #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.055);
}

.premium-product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.premium-product-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 950;
}

.premium-product-label span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 950;
}

.premium-product-head h3 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.premium-product-head p {
    margin: 8px 0 0;
    max-width: 720px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.premium-product-price {
    min-width: 150px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: right;
}

.premium-product-price span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
}

.premium-product-price strong {
    color: #dc2626;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.premium-empty-box {
    grid-column: 1 / -1;
    padding: 26px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 720px) {
    .premium-product-section {
        padding: 18px;
        border-radius: 24px;
    }

    .premium-product-head {
        display: block;
    }

    .premium-product-price {
        margin-top: 14px;
        width: 100%;
        text-align: left;
    }

    .premium-product-head h3 {
        font-size: 21px;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.footer-links a {
    color: #334155;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-info,
.footer-copy {
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   공통 배너 출력 영역
========================================================= */

.site-banner-area {
    margin: 0 0 22px;
}

.site-banner-list {
    display: grid;
    gap: 12px;
}

.site-banner-item {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.site-banner-item a {
    display: block;
}

.site-banner-item img {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.site-banner-item:hover img {
    transform: scale(1.012);
}

.job-banner-area .site-banner-list,
.company-banner-area .site-banner-list {
    grid-template-columns: 1fr;
}

.mobile-banner-area {
    display: none;
}

@media (max-width: 780px) {
    .mobile-banner-area {
        display: block;
        margin-bottom: 16px;
    }

    .mobile-banner-area .site-banner-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-banner-area .site-banner-item {
        min-width: 86%;
        border-radius: 20px;
        scroll-snap-align: start;
    }

    .site-banner-item img {
        max-height: 160px;
    }
}

@media (min-width: 781px) {
    .mobile-banner-area {
        display: none !important;
    }
}

.mobile-banner-area {
    display: none;
}

@media (max-width: 780px) {
    .mobile-banner-area {
        display: block;
        margin-bottom: 16px;
    }

    .mobile-banner-area .site-banner-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-banner-area .site-banner-item {
        min-width: 86%;
        border-radius: 20px;
        scroll-snap-align: start;
    }

    .mobile-banner-area .site-banner-item img {
        max-height: 160px;
        width: 100%;
        object-fit: cover;
    }
}

@media (min-width: 781px) {
    .mobile-banner-area {
        display: none !important;
    }
}

/* =========================================================
   사이트 로고 이미지
========================================================= */

.logo-img-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-height: 44px;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
}

@media (max-width: 720px) {
    .logo-img-link {
        min-height: 38px;
    }

    .site-logo-img {
        height: 34px;
        max-width: 150px;
    }
}

/* =========================================================
   사용자 헤더 모바일 햄버거 메뉴
   로고 왼쪽 / 버튼 오른쪽 같은 선상
========================================================= */

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-menu-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.mobile-menu-btn,
.mobile-menu-head,
.mobile-menu-close,
.mobile-menu-backdrop {
    display: none;
}

.logo-img-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.site-logo-img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 64px;
        padding: 11px 14px;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .logo-img-link {
        min-height: 42px;
        max-width: calc(100% - 58px);
    }

    .site-logo-img {
        height: 34px;
        max-width: 150px;
    }

    .mobile-menu-btn {
        flex: 0 0 42px;
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    }

    .mobile-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
    }

    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 3990;
        background: rgba(15, 23, 42, 0.50);
        backdrop-filter: blur(3px);
    }

    .mobile-menu-backdrop.is-open {
        display: block;
    }

    .header-menu-panel {
        position: fixed;
        top: 0;
        right: -320px;
        z-index: 4000;
        display: block;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        padding: 20px;
        margin-left: 0;
        background: #ffffff;
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
        transition: right 0.22s ease;
        overflow-y: auto;
    }

    .header-menu-panel.is-open {
        right: 0;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-head strong {
        color: #0f172a;
        font-size: 18px;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .mobile-menu-close {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        background: #f1f5f9;
        color: #0f172a;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
    }

    .header-menu-panel .nav {
        width: 100%;
        display: grid !important;
        gap: 8px;
        margin: 0 0 18px;
        padding: 0;
        overflow: visible;
        white-space: normal;
    }

    .header-menu-panel .nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 15px;
        font-weight: 900;
    }

    .header-menu-panel .nav a:hover {
        background: #eff6ff;
        color: #2563eb;
    }

    .header-menu-panel .user-menu {
        width: 100%;
        display: grid !important;
        justify-content: stretch !important;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        white-space: normal;
    }

    .header-menu-panel .user-menu strong {
        display: block;
        margin-bottom: 6px;
        color: #0f172a;
        font-size: 15px;
        font-weight: 950;
    }

    .header-menu-panel .user-menu a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #334155;
        font-size: 14px;
        font-weight: 850;
    }

    .header-menu-panel .user-menu a:hover {
        border-color: #bfdbfe;
        background: #eff6ff;
        color: #2563eb;
    }
}

/* =========================================================
   사용자 모바일 메뉴 강제 숨김/열림 보정
   문제: 클릭 전 메뉴가 보이는 현상 해결
========================================================= */

/* PC 기본 */
.mobile-menu-btn,
.mobile-menu-head,
.mobile-menu-close,
.mobile-menu-backdrop {
    display: none !important;
}

.header-menu-panel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* 모바일 */
@media (max-width: 900px) {
    .header {
        z-index: 3000;
    }

    .header-inner {
        max-width: 1180px;
        min-height: 64px;
        margin: 0 auto;
        padding: 11px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .logo-img-link {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .site-logo-img {
        height: 34px;
        max-width: 150px;
    }

    .mobile-menu-btn {
        flex: 0 0 42px;
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
        position: relative;
        z-index: 3001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
    }

    .mobile-menu-backdrop {
        display: none !important;
        position: fixed;
        inset: 0;
        z-index: 3990;
        background: rgba(15, 23, 42, 0.50);
        backdrop-filter: blur(3px);
    }

    .mobile-menu-backdrop.is-open {
        display: block !important;
    }

    /*
       핵심:
       right:-320px 대신 transform으로 완전히 화면 밖으로 이동
       visibility/pointer-events까지 막아서 클릭 전 노출 방지
    */
    .header-menu-panel {
        position: fixed !important;
        top: 0;
        right: 0;
        z-index: 4000;
        display: block !important;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        padding: 20px;
        margin-left: 0 !important;
        background: #ffffff;
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
        overflow-y: auto;

        transform: translateX(110%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;

        transition:
            transform 0.22s ease,
            opacity 0.18s ease,
            visibility 0s linear 0.22s;
    }

    .header-menu-panel.is-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition:
            transform 0.22s ease,
            opacity 0.18s ease,
            visibility 0s;
    }

    .mobile-menu-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-head strong {
        color: #0f172a;
        font-size: 18px;
        font-weight: 950;
        letter-spacing: -0.04em;
    }

    .mobile-menu-close {
        display: inline-flex !important;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        background: #f1f5f9;
        color: #0f172a;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
    }

    .header-menu-panel .nav {
        width: 100%;
        display: grid !important;
        gap: 8px;
        margin: 0 0 18px;
        padding: 0;
        overflow: visible !important;
        white-space: normal !important;
    }

    .header-menu-panel .nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 15px;
        font-weight: 900;
    }

    .header-menu-panel .user-menu {
        width: 100%;
        display: grid !important;
        justify-content: stretch !important;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        white-space: normal !important;
    }

    .header-menu-panel .user-menu strong {
        display: block;
        margin-bottom: 6px;
        color: #0f172a;
        font-size: 15px;
        font-weight: 950;
    }

    .header-menu-panel .user-menu a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #334155;
        font-size: 14px;
        font-weight: 850;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* =========================================================
   모바일 헤더 공간 제거 최종 보정
   닫힌 메뉴는 공간 자체를 차지하지 않게 처리
========================================================= */

@media (max-width: 900px) {
    .header {
        z-index: 3000;
    }

    .header-inner {
        max-width: 1180px;
        min-height: 64px;
        margin: 0 auto;
        padding: 11px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .logo-img-link {
        flex: 0 1 auto !important;
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .site-logo-img {
        height: 34px;
        max-width: 150px;
    }

    .mobile-menu-btn {
        flex: 0 0 42px !important;
        display: inline-flex !important;
        width: 42px;
        height: 42px;
        margin-left: auto !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
        position: relative;
        z-index: 3001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
    }

    /*
       핵심:
       닫힌 상태에서는 display:none으로 공간 자체 제거
    */
    .header-menu-panel {
        display: none !important;
        position: fixed !important;
        top: 0;
        right: 0;
        z-index: 4000;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        padding: 20px;
        margin: 0 !important;
        background: #ffffff;
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
        overflow-y: auto;
    }

    .header-menu-panel.is-open {
        display: block !important;
    }

    .mobile-menu-backdrop {
        display: none !important;
        position: fixed;
        inset: 0;
        z-index: 3990;
        background: rgba(15, 23, 42, 0.50);
        backdrop-filter: blur(3px);
    }

    .mobile-menu-backdrop.is-open {
        display: block !important;
    }

    .mobile-menu-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-close {
        display: inline-flex !important;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        background: #f1f5f9;
        color: #0f172a;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
    }

    .header-menu-panel .nav {
        width: 100%;
        display: grid !important;
        gap: 8px;
        margin: 0 0 18px;
        padding: 0;
        overflow: visible !important;
        white-space: normal !important;
    }

    .header-menu-panel .nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 15px;
        font-weight: 900;
    }

    .header-menu-panel .user-menu {
        width: 100%;
        display: grid !important;
        justify-content: stretch !important;
        gap: 8px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        white-space: normal !important;
    }

    .header-menu-panel .user-menu a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #334155;
        font-size: 14px;
        font-weight: 850;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}
/* =========================================================
   Yesoft UI Polish v2 - 사용자/관리자 공통 디자인 정리
   목적: 큰 폰트/투박한 간격 축소, 카드/테이블/헤더 세련화,
         모바일 사용자 햄버거 메뉴 클릭 전 공간 제거
========================================================= */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-soft: #eff6ff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --radius: 16px;
    --shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
    --shadow-hover: 0 16px 38px rgba(15, 23, 42, 0.085);
}

html {
    font-size: 15px;
}

body {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
    background:
        radial-gradient(circle at 10% -5%, rgba(37, 99, 235, 0.08), transparent 28rem),
        radial-gradient(circle at 92% 6%, rgba(14, 165, 233, 0.055), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #f7f8fb 45%, #f8fafc 100%);
}

/* 사용자 헤더 */
.header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
    z-index: 3000;
}

.header-inner {
    min-height: 68px;
    padding: 12px 18px;
    align-items: center;
}

.logo {
    font-size: 22px;
    letter-spacing: -0.055em;
}

.logo-img-link {
    min-height: 40px;
}

.site-logo-img {
    height: 38px;
    max-width: 170px;
}

.header-menu-panel {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav {
    gap: 4px;
    font-size: 14px;
    font-weight: 760;
}

.nav a {
    padding: 8px 11px;
    border-radius: 999px;
    color: #475569;
}

.user-menu {
    gap: 6px;
    font-size: 13px;
    font-weight: 720;
}

.user-menu a {
    padding: 7px 9px;
    border-radius: 999px;
}

.container {
    max-width: 1160px;
    padding: 24px 18px;
}

/* 제목/카드/버튼 공통 */
.page-head {
    padding: 18px 20px;
    margin-bottom: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}

.page-title {
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.055em;
}

.page-desc {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.card,
.card-flat,
.board-card,
.faq-item,
.stat-card,
.job-card,
.resume-card,
.resume-search-card,
.noti-card,
.msg-card,
.job-list-card,
.premium-card,
.premium-product-section,
.mypage-action-card,
.company-action-card {
    border-radius: 18px;
    border-color: rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow);
}

.card {
    padding: 22px;
}

.card-flat {
    padding: 19px;
}

.btn {
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 820;
    box-shadow: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(15, 23, 42, 0.07);
}

.input,
.select {
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
}

.textarea {
    border-radius: 12px;
    font-size: 14px;
}

.search-box {
    padding: 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* 메인 화면 */
.main-banner-slider {
    padding: 10px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.main-banner-viewport,
.main-banner-slide {
    border-radius: 16px;
}

.main-banner-slide img {
    height: 210px;
}

.main-hero {
    padding: 40px 36px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.16), transparent 24rem),
        linear-gradient(135deg, #f8fbff, #ffffff);
}

.main-hero-badge,
.mypage-hero-badge,
.pay-ready-badge {
    min-height: 28px;
    padding: 0 11px;
    font-size: 12px;
    font-weight: 850;
}

.main-hero h1 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.22;
    letter-spacing: -0.075em;
}

.main-hero p {
    margin-bottom: 22px;
    color: #475569;
    font-size: 16px;
}

.section-head {
    margin-bottom: 14px;
}

.section-title {
    font-size: 22px;
    letter-spacing: -0.055em;
}

.section-desc {
    font-size: 13px;
}

.premium-section {
    margin: 28px 0;
}

.premium-product-section {
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
}

.premium-product-head h3 {
    font-size: 20px;
}

.premium-grid {
    gap: 12px;
}

.premium-thumb {
    height: 132px;
}

.premium-body {
    padding: 14px;
}

.premium-title {
    min-height: 42px;
    font-size: 15px;
}

.premium-pay strong {
    font-size: 16px;
}

/* 채용 목록 */
.job-card {
    grid-template-columns: 112px 1fr auto;
    gap: 14px;
    padding: 15px;
    border-radius: 16px;
}

.job-thumb {
    width: 112px;
    height: 82px;
    border-radius: 13px;
    font-size: 15px;
}

.job-title,
.job-list-title,
.board-title,
.msg-title,
.noti-title {
    font-size: 17px;
    line-height: 1.42;
    letter-spacing: -0.045em;
}

.job-company,
.job-list-company {
    font-size: 13px;
}

.badge,
.apply-status {
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 760;
}

.job-pay-amount {
    font-size: 18px;
}

/* 테이블 */
.table-wrap {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
    padding: 12px 10px;
    font-size: 13px;
}

.data-table th {
    font-weight: 850;
}

.data-table .btn {
    min-height: 32px !important;
    padding: 0 11px;
    font-size: 12px;
}

/* 개인/기업 대시보드 */
.mypage-hero,
.company-hero,
.pay-ready-hero {
    padding: 30px 28px;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.mypage-hero h1,
.company-hero h1,
.pay-ready-hero h1 {
    font-size: 29px;
    line-height: 1.26;
}

.mypage-hero p,
.company-hero p,
.pay-ready-hero p {
    font-size: 14px;
}

.mypage-card-grid,
.company-action-grid {
    gap: 12px;
}

.mypage-action-card,
.company-action-card {
    min-height: 150px;
    padding: 20px;
    border-radius: 22px;
}

.mypage-action-card h2,
.company-action-card h2 {
    font-size: 17px;
}

/* 관리자 전체 톤 */
.admin-shell {
    grid-template-columns: 240px minmax(0, 1fr);
    background: #f8fafc;
}

.admin-sidebar {
    width: 240px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 14rem),
        linear-gradient(180deg, #111827, #020617);
}

.admin-sidebar-head {
    min-height: 62px;
    padding: 14px 14px 10px;
}

.admin-sidebar .admin-logo {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 15px;
}

.admin-sidebar .admin-menu {
    gap: 4px;
    padding: 8px 10px 20px;
}

.admin-sidebar .admin-menu-link,
.admin-sidebar .admin-menu-parent {
    min-height: 38px;
    padding: 0 11px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 760;
}

.admin-sidebar .admin-submenu {
    padding-left: 9px;
}

.admin-sidebar .admin-sub-link {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 720;
}

.admin-top {
    min-height: 62px;
    padding: 12px 20px;
}

.admin-top strong {
    font-size: 14px;
}

.admin-content {
    padding: 20px;
}

.stat-grid {
    gap: 12px;
}

.stat-card {
    padding: 17px;
    border-radius: 16px;
}

.stat-label {
    font-size: 12px;
}

.stat-value {
    font-size: 26px;
}

/* 푸터 */
.footer {
    margin-top: 54px;
}

.footer-inner {
    padding: 28px 18px;
    font-size: 12px;
}

.footer-links {
    font-size: 13px;
}

/* 사용자 모바일 헤더 최종 보정 */
.mobile-menu-btn,
.mobile-menu-head,
.mobile-menu-close,
.mobile-menu-backdrop {
    display: none !important;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 58px;
        padding: 9px 14px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .logo-img-link {
        flex: 0 1 auto !important;
        min-width: 0;
        max-width: calc(100% - 52px);
        min-height: 38px;
    }

    .site-logo-img {
        height: 30px;
        max-width: 138px;
    }

    .mobile-menu-btn {
        flex: 0 0 38px !important;
        display: inline-flex !important;
        width: 38px;
        height: 38px;
        margin-left: auto !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: #ffffff;
        cursor: pointer;
        position: relative;
        z-index: 3001;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    }

    .mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #0f172a;
    }

    .header-menu-panel {
        display: none !important;
        position: fixed !important;
        top: 0;
        right: 0;
        z-index: 4000;
        width: 292px;
        max-width: 86vw;
        height: 100vh;
        padding: 18px;
        margin: 0 !important;
        background: #ffffff;
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22);
        overflow-y: auto;
    }

    .header-menu-panel.is-open {
        display: block !important;
    }

    .mobile-menu-backdrop {
        display: none !important;
        position: fixed;
        inset: 0;
        z-index: 3990;
        background: rgba(15, 23, 42, 0.48);
        backdrop-filter: blur(3px);
    }

    .mobile-menu-backdrop.is-open {
        display: block !important;
    }

    .mobile-menu-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 14px;
        margin-bottom: 14px;
        border-bottom: 1px solid #e2e8f0;
    }

    .mobile-menu-head strong {
        font-size: 16px;
        font-weight: 900;
    }

    .mobile-menu-close {
        display: inline-flex !important;
        width: 34px;
        height: 34px;
        align-items: center;
        justify-content: center;
        border: 0;
        border-radius: 999px;
        background: #f1f5f9;
        color: #0f172a;
        font-size: 23px;
        line-height: 1;
        cursor: pointer;
    }

    .header-menu-panel .nav {
        width: 100%;
        display: grid !important;
        gap: 7px;
        margin: 0 0 16px;
        padding: 0;
        overflow: visible !important;
        white-space: normal !important;
    }

    .header-menu-panel .nav a {
        display: flex;
        align-items: center;
        min-height: 42px;
        padding: 0 13px;
        border-radius: 12px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 14px;
        font-weight: 820;
    }

    .header-menu-panel .user-menu {
        width: 100%;
        display: grid !important;
        justify-content: stretch !important;
        gap: 7px;
        padding-top: 14px;
        border-top: 1px solid #e2e8f0;
        white-space: normal !important;
    }

    .header-menu-panel .user-menu a {
        display: flex;
        align-items: center;
        min-height: 40px;
        padding: 0 13px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #334155;
        font-size: 13px;
        font-weight: 780;
    }

    .container {
        padding: 18px 14px;
    }

    .page-head {
        padding: 16px;
        border-radius: 16px;
    }

    .page-title {
        font-size: 22px;
    }

    .main-banner-slide img {
        height: 150px;
    }

    .main-hero {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .main-hero h1 {
        font-size: 28px;
    }

    .main-hero p {
        font-size: 14px;
    }

    .job-card {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .job-thumb {
        width: 100%;
        height: 136px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        width: 292px;
        max-width: 84vw;
    }

    .admin-content {
        padding: 16px 14px;
    }

    .admin-top {
        padding: 10px 14px;
    }
}

@media (min-width: 901px) {
    .mobile-menu-btn,
    .mobile-menu-head,
    .mobile-menu-close,
    .mobile-menu-backdrop {
        display: none !important;
    }
}
/* 채용목록 제목 축소 및 결과 정렬 도구 */
.container > .page-head { padding: 18px 22px; border-radius: 16px; }
.container > .page-head .page-title { font-size: 21px; font-weight: 750; letter-spacing: -0.035em; line-height: 1.3; }
.container > .page-head .page-desc { margin-top: 5px; font-size: 13px; font-weight: 400; line-height: 1.55; }
.job-result-toolbar { margin: 24px 0 14px; padding: 0 0 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #cbd5e1; }
.job-result-count { color: #64748b; font-size: 14px; font-weight: 400; }
.job-result-count strong { color: #334155; font-weight: 700; }
.job-result-options { display: flex; align-items: center; gap: 8px; }
.job-result-options select { min-width: 122px; min-height: 42px; padding: 0 36px 0 13px; border: 1px solid #d1d5db; border-radius: 10px; background-color: #fff; color: #334155; font-size: 13px; font-weight: 500; cursor: pointer; }
@media (max-width: 760px) {
    .container > .page-head { padding: 15px 16px; }
    .container > .page-head .page-title { font-size: 18px; font-weight: 700; }
    .container > .page-head .page-desc { font-size: 12px; }
    .job-result-toolbar { align-items: flex-start; flex-direction: column; }
    .job-result-options { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
    .job-result-options select { width: 100%; min-width: 0; padding: 0 25px 0 8px; font-size: 12px; }
}
@media (max-width: 430px) { .job-result-options { grid-template-columns: 1fr; } }

/* 인재정보 개인정보 보호 및 상세 버튼 정렬 */
.privacy-mask {
    display: inline-block;
    color: #64748b;
    font-weight: 650;
    letter-spacing: .02em;
}

.resume-private-notice {
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 13px;
    line-height: 1.5;
}

.resume-private-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 12px;
}

.resume-private-actions form {
    display: inline-flex;
    margin: 0;
}

.resume-private-actions .btn {
    width: auto;
    white-space: nowrap;
}

@media (max-width: 430px) {
    .resume-private-actions { gap: 6px; }
    .resume-private-actions .btn {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 13px;
    }
}

/* 인재정보 목록: 비교하기 쉬운 반응형 카드 배열 */
.resume-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.resume-search-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 20px 18px;
    border-radius: 16px;
}

.resume-card-head {
    min-width: 0;
    text-align: center;
}

.resume-search-card .resume-mini-photo {
    width: 62px;
    height: 62px;
    margin: 0 auto 10px;
    border-radius: 50%;
    font-size: 12px;
}

.resume-card-name {
    margin: 0 0 7px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 750;
}

.resume-card-title {
    display: -webkit-box;
    min-height: 42px;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
}

.resume-card-info {
    display: grid;
    gap: 8px;
    margin-top: 17px;
}

.resume-card-info p {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    margin: 0;
    min-width: 0;
}

.resume-info-icon {
    color: #94a3b8;
    font-size: 12px;
}

.resume-card-info strong {
    overflow: hidden;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resume-card-badges {
    min-height: 31px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #eef2f7;
}

.resume-card-date {
    margin-left: auto;
    color: #94a3b8;
    font-size: 11px;
}

.resume-search-card .resume-action-box {
    display: block;
    margin-top: 12px;
}

.resume-search-card .resume-action-box .btn {
    width: 100%;
    min-height: 38px;
}

@media (max-width: 980px) {
    .resume-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .resume-list { grid-template-columns: 1fr; }
    .resume-search-card { padding: 18px 16px 16px; }
}

/* 사이트 전체 바탕: 컬러/그라데이션 제거 후 화이트 톤 통일 */
html,
body,
body.job-modern-layout {
    background-color: #ffffff !important;
    background-image: none !important;
}

main.container {
    background-color: transparent;
    background-image: none;
}

/* 메인 배너를 감싸는 큰 둥근 외곽 박스 제거 */
.main-banner-slider,
body.job-modern-layout .main-banner-slider {
    padding: 0 0 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* 유료 채용상품 전체를 감싸는 큰 둥근 외곽 박스 제거 */
.premium-product-section,
body.job-modern-layout .premium-product-section {
    padding: 0 0 28px !important;
    border: 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.premium-product-section + .premium-product-section {
    margin-top: 30px;
}

@media (max-width: 760px) {
    .main-banner-slider,
    body.job-modern-layout .main-banner-slider {
        padding-bottom: 10px !important;
    }

    .premium-product-section,
    body.job-modern-layout .premium-product-section {
        padding-bottom: 22px !important;
    }
}

/* =========================================================
   Helper platform theme override
   사용자/관리자 공통: 기존 알바 사이트 느낌을 줄이고 돌봄 구인구직 톤으로 변경
========================================================= */
:root {
    --helper-navy: #18243a;
    --helper-ink: #1f2937;
    --helper-muted: #667085;
    --helper-line: #e7edf3;
    --helper-bg: #f7f3ed;
    --helper-card: #ffffff;
    --helper-teal: #0f766e;
    --helper-teal-dark: #115e59;
    --helper-teal-soft: #e9fbf7;
    --helper-orange: #f97316;
    --helper-orange-soft: #fff4e8;
    --helper-radius: 22px;
    --helper-shadow: 0 18px 44px rgba(24, 36, 58, 0.09);
    --primary: #0f766e;
    --primary-dark: #115e59;
    --primary-soft: #e9fbf7;
    --dark: #18243a;
}

body {
    color: var(--helper-ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(15, 118, 110, 0.13), transparent 34rem),
        radial-gradient(circle at 92% 12%, rgba(249, 115, 22, 0.12), transparent 30rem),
        linear-gradient(180deg, #fbf7ef 0%, #f8fafc 46%, #ffffff 100%) !important;
    font-size: 14px;
    letter-spacing: -0.025em;
}

.header {
    background: rgba(255, 255, 255, 0.86) !important;
    border-bottom: 1px solid rgba(231, 237, 243, 0.95) !important;
    box-shadow: 0 10px 30px rgba(24, 36, 58, 0.045);
}

.header-inner {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.logo {
    color: var(--helper-navy) !important;
    font-size: 22px !important;
    letter-spacing: -0.06em !important;
}

.logo::before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-right: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--helper-teal), var(--helper-orange));
    vertical-align: middle;
    transform: translateY(-1px);
}

.logo-img-link::before {
    display: none;
}

.nav {
    gap: 4px !important;
    font-size: 14px !important;
}

.nav a {
    padding: 9px 11px !important;
    border-radius: 999px !important;
    color: #344054 !important;
    font-weight: 850 !important;
}

.nav a:hover {
    color: var(--helper-teal-dark) !important;
    background: var(--helper-teal-soft) !important;
}

.user-menu {
    gap: 6px !important;
    font-size: 13px !important;
}

.user-menu a {
    min-height: 34px;
    padding: 0 11px !important;
    border: 1px solid var(--helper-line);
    border-radius: 999px !important;
    background: #ffffff;
}

.container {
    max-width: 1160px !important;
    padding-top: 24px !important;
}

.card,
.card-flat,
.board-card,
.faq-item,
.stat-card,
.job-card,
.resume-card,
.noti-card,
.msg-card,
.job-list-card,
.premium-product-section,
.search-box,
.table-wrap {
    border-color: rgba(231, 237, 243, 0.98) !important;
    border-radius: var(--helper-radius) !important;
    box-shadow: var(--helper-shadow) !important;
}

.card,
.card-flat,
.board-card,
.faq-item,
.stat-card,
.job-card,
.resume-card,
.noti-card,
.msg-card,
.job-list-card,
.premium-product-section {
    background: rgba(255, 255, 255, 0.96) !important;
}

.page-head {
    padding: 20px 22px !important;
    border: 1px solid var(--helper-line) !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 22rem),
        rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--helper-shadow) !important;
}

.page-title {
    font-size: 25px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.07em !important;
    color: var(--helper-navy) !important;
}

.page-desc,
.help-text,
.section-desc {
    color: var(--helper-muted) !important;
}

.btn {
    min-height: 39px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    box-shadow: none !important;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--helper-teal), var(--helper-teal-dark)) !important;
    color: #ffffff !important;
}

.btn-dark {
    background: linear-gradient(135deg, var(--helper-navy), #0f172a) !important;
    color: #ffffff !important;
}

.btn-line {
    background: #ffffff !important;
    border: 1px solid #d8e1ea !important;
    color: #344054 !important;
}

.btn-soft {
    background: var(--helper-teal-soft) !important;
    border: 1px solid #b8eee0 !important;
    color: var(--helper-teal-dark) !important;
}

.input,
.select,
.textarea,
.status-select {
    min-height: 44px;
    border-color: #d8e1ea !important;
    border-radius: 14px !important;
    font-size: 14px !important;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--helper-teal) !important;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12) !important;
}

.form-title,
.form-section-title,
.section-title,
.job-title,
.board-title,
.noti-title,
.msg-title {
    color: var(--helper-navy) !important;
    letter-spacing: -0.055em !important;
}

.form-section-title {
    font-size: 17px !important;
}

.main-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 46px 42px !important;
    border: 1px solid rgba(225, 234, 241, 0.95) !important;
    border-radius: 34px !important;
    background:
        linear-gradient(90deg, rgba(24, 36, 58, 0.88), rgba(15, 118, 110, 0.78)),
        radial-gradient(circle at right top, rgba(249, 115, 22, 0.36), transparent 28rem),
        linear-gradient(135deg, #0f766e, #18243a) !important;
    box-shadow: 0 28px 70px rgba(24, 36, 58, 0.18) !important;
}

.main-hero::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: -42px;
    width: 240px;
    height: 240px;
    border-radius: 70px;
    background: rgba(255, 255, 255, 0.10);
    transform: rotate(18deg);
}

.main-hero-content {
    position: relative;
    z-index: 1;
}

.main-hero-badge {
    min-height: 30px !important;
    padding: 0 12px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.main-hero h1 {
    color: #ffffff !important;
    font-size: 42px !important;
    line-height: 1.16 !important;
    letter-spacing: -0.085em !important;
}

.main-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 16px !important;
}

.main-hero .btn-line {
    background: rgba(255, 255, 255, 0.13) !important;
    border-color: rgba(255, 255, 255, 0.30) !important;
    color: #ffffff !important;
}

.main-hero .btn-primary {
    background: #ffffff !important;
    color: var(--helper-teal-dark) !important;
}

.helper-quick-section {
    margin: 22px 0 30px;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid var(--helper-line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--helper-shadow);
}

.helper-quick-head {
    margin-bottom: 18px;
}

.helper-quick-head span {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--helper-orange-soft);
    color: #c2410c;
    font-size: 12px;
    font-weight: 950;
}

.helper-quick-head h2 {
    margin: 10px 0 5px;
    color: var(--helper-navy);
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.helper-quick-head p {
    margin: 0;
    color: var(--helper-muted);
    line-height: 1.7;
}

.helper-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.helper-quick-card {
    position: relative;
    min-height: 132px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #dfe8f1;
    background:
        radial-gradient(circle at right top, rgba(15, 118, 110, 0.10), transparent 12rem),
        #ffffff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.helper-quick-card:hover {
    transform: translateY(-3px);
    border-color: #99d9cd;
    box-shadow: 0 18px 44px rgba(15, 118, 110, 0.14);
}

.helper-quick-card strong {
    display: block;
    margin-bottom: 9px;
    color: var(--helper-navy);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.helper-quick-card span {
    color: var(--helper-muted);
    font-size: 13px;
    line-height: 1.6;
}

.premium-section {
    margin-top: 28px !important;
}

.premium-product-section {
    padding: 20px !important;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 18rem),
        rgba(255, 255, 255, 0.96) !important;
}

.premium-product-head h3 {
    font-size: 22px !important;
    color: var(--helper-navy) !important;
}

.premium-card {
    border-radius: 24px !important;
    border-color: var(--helper-line) !important;
    box-shadow: 0 14px 34px rgba(24, 36, 58, 0.07) !important;
}

.premium-thumb-empty span {
    background: linear-gradient(135deg, var(--helper-teal), var(--helper-orange)) !important;
    color: #ffffff !important;
}

.premium-ribbon,
.badge-primary {
    background: var(--helper-teal) !important;
    color: #ffffff !important;
}

.premium-urgent,
.premium-highlight {
    background: var(--helper-orange) !important;
}

.premium-pay strong,
.job-pay-amount {
    color: var(--helper-orange) !important;
}

.data-table th {
    background: #f5f7f9 !important;
    color: #475467 !important;
    font-size: 12px !important;
}

.data-table td {
    font-size: 13px !important;
}

.footer {
    background: #18243a !important;
    border-top: 0 !important;
}

.footer-inner,
.footer-info,
.footer-copy,
.footer-links {
    color: rgba(255, 255, 255, 0.66) !important;
}

.footer-inner strong,
.footer-links a {
    color: #ffffff !important;
}

.admin-shell {
    background: #f5f7f9 !important;
}

.admin-sidebar {
    width: 248px !important;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.38), transparent 16rem),
        linear-gradient(180deg, #18243a, #0f172a) !important;
}

.admin-sidebar .admin-logo {
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 16px !important;
}

.admin-sidebar .admin-menu-link,
.admin-sidebar .admin-menu-parent {
    min-height: 39px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    color: #d0d5dd !important;
}

.admin-sidebar .admin-menu-link:hover,
.admin-sidebar .admin-menu-parent:hover,
.admin-sidebar .admin-menu-link.is-active,
.admin-sidebar .admin-menu-group.is-open > .admin-menu-parent {
    background: rgba(15, 118, 110, 0.32) !important;
    color: #ffffff !important;
}

.admin-sidebar .admin-sub-link {
    min-height: 32px !important;
    font-size: 12px !important;
    color: #aeb7c6 !important;
}

.admin-top {
    min-height: 62px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid var(--helper-line) !important;
}

.admin-content {
    padding: 20px !important;
}

.stat-grid {
    gap: 12px !important;
}

.stat-card {
    padding: 18px !important;
}

.stat-value {
    font-size: 28px !important;
    color: var(--helper-teal-dark) !important;
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 62px !important;
    }

    .mobile-menu-btn {
        border-color: var(--helper-line) !important;
    }

    .header-menu-panel {
        display: none !important;
        position: fixed !important;
        top: 0;
        right: 0;
        z-index: 4000;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        margin: 0 !important;
        padding: 20px;
        background: #ffffff !important;
        overflow-y: auto;
        box-shadow: -24px 0 60px rgba(24, 36, 58, 0.22);
    }

    .header-menu-panel.is-open {
        display: block !important;
    }

    .mobile-menu-backdrop {
        display: none !important;
    }

    .mobile-menu-backdrop.is-open {
        display: block !important;
    }

    .header-menu-panel .nav {
        display: grid !important;
        width: 100%;
        overflow: visible !important;
        white-space: normal !important;
    }

    .header-menu-panel .user-menu {
        display: grid !important;
        width: 100%;
        justify-content: stretch !important;
        white-space: normal !important;
    }

    .main-hero {
        min-height: 310px;
        padding: 34px 24px !important;
        border-radius: 28px !important;
    }

    .main-hero h1 {
        font-size: 32px !important;
    }

    .helper-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-sidebar {
        width: 300px !important;
    }
}

@media (max-width: 560px) {
    .main-hero {
        padding: 30px 20px !important;
    }

    .main-hero h1 {
        font-size: 29px !important;
    }

    .helper-quick-section {
        padding: 18px;
        border-radius: 24px;
    }

    .helper-quick-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 23px !important;
    }
}

/* =========================================================
   단디헬퍼형 메인/채용정보 구성 패치
   - 외부 소스 복사 없음
   - 기존 Classic ASP 구조에 맞춘 UI 재구성
========================================================= */

:root {
    --care-navy: #12313f;
    --care-green: #0f8f7a;
    --care-mint: #e8f7f3;
    --care-orange: #ff8a3d;
    --care-cream: #fff8ef;
    --care-line: #d9e6e2;
    --care-text: #20343d;
    --care-muted: #6d8088;
}

body {
    background:
        radial-gradient(circle at 12% 0%, rgba(15, 143, 122, 0.12), transparent 34rem),
        radial-gradient(circle at 88% 6%, rgba(255, 138, 61, 0.12), transparent 30rem),
        linear-gradient(180deg, #f7fbf9 0%, #f7faf7 44%, #fbfbf7 100%) !important;
    color: var(--care-text);
}

.header {
    border-bottom: 1px solid rgba(217, 230, 226, 0.9) !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.logo {
    color: var(--care-green) !important;
}

.nav a:hover,
.user-menu a:hover {
    color: var(--care-green) !important;
    background: var(--care-mint) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--care-green), #087764) !important;
    color: #ffffff !important;
}

.btn-dark {
    background: linear-gradient(135deg, var(--care-navy), #071b24) !important;
    color: #ffffff !important;
}

.btn-soft {
    color: var(--care-green) !important;
    background: var(--care-mint) !important;
    border-color: #bfe9df !important;
}

.dandi-main-shell {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.dandi-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at right top, rgba(255, 138, 61, 0.24), transparent 26rem),
        linear-gradient(135deg, #e9f8f3, #ffffff 55%, #fff7ec);
    border: 1px solid #d7ebe5;
    box-shadow: 0 18px 42px rgba(18, 49, 63, 0.08);
}

.dandi-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dandi-label,
.dandi-section-title span,
.dandi-sub-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--care-mint);
    color: var(--care-green);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.dandi-hero-copy h1 {
    margin: 16px 0 14px;
    color: var(--care-navy);
    font-size: 43px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -0.08em;
}

.dandi-hero-copy p {
    max-width: 640px;
    margin: 0;
    color: #49646c;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 650;
}

.dandi-main-search {
    align-self: center;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbece7;
    box-shadow: 0 18px 36px rgba(18, 49, 63, 0.08);
}

.dandi-main-search strong {
    display: block;
    margin-bottom: 12px;
    color: var(--care-navy);
    font-size: 21px;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.dandi-main-search-row {
    display: grid;
    grid-template-columns: 1fr 92px;
    gap: 8px;
}

.dandi-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.dandi-search-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f7fbfa;
    border: 1px solid #d9e6e2;
    color: #567178;
    font-size: 13px;
    font-weight: 850;
}

.dandi-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dandi-action-card {
    display: block;
    min-height: 128px;
    padding: 22px;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(18, 49, 63, 0.12);
}

.dandi-action-card span,
.dandi-action-card em {
    display: block;
    opacity: 0.88;
    font-size: 13px;
    font-weight: 800;
    font-style: normal;
}

.dandi-action-card strong {
    display: block;
    margin: 8px 0;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.dandi-action-card.is-green {
    background: linear-gradient(135deg, var(--care-green), #0b6f60);
}

.dandi-action-card.is-orange {
    background: linear-gradient(135deg, var(--care-orange), #d85d12);
}

.dandi-action-card.is-blue {
    background: linear-gradient(135deg, var(--care-navy), #0a1d25);
}

.dandi-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dandi-stat-grid div {
    padding: 20px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 12px 28px rgba(18, 49, 63, 0.055);
    text-align: center;
}

.dandi-stat-grid strong {
    display: block;
    color: var(--care-green);
    font-size: 30px;
    font-weight: 950;
}

.dandi-stat-grid span {
    display: block;
    margin-top: 4px;
    color: var(--care-muted);
    font-size: 13px;
    font-weight: 850;
}

.dandi-main-banner {
    margin: 24px 0;
}

.dandi-category-section,
.dandi-section-block,
.dandi-board-layout,
.dandi-two-column {
    margin-top: 30px;
}

.dandi-section-title {
    margin-bottom: 16px;
}

.dandi-section-title h2 {
    margin: 10px 0 0;
    color: var(--care-navy);
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.dandi-section-title.with-link {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.dandi-section-title.with-link > a {
    color: var(--care-green);
    font-size: 14px;
    font-weight: 900;
}

.dandi-section-title.small h2 {
    font-size: 21px;
}

.dandi-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.dandi-category-grid a {
    display: block;
    min-height: 98px;
    padding: 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 12px 28px rgba(18, 49, 63, 0.055);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.dandi-category-grid a:hover {
    transform: translateY(-2px);
    border-color: #93d7ca;
    box-shadow: 0 18px 38px rgba(15, 143, 122, 0.12);
}

.dandi-category-grid strong {
    display: block;
    color: var(--care-navy);
    font-size: 18px;
    font-weight: 950;
}

.dandi-category-grid span {
    display: block;
    margin-top: 8px;
    color: var(--care-muted);
    font-size: 13px;
    font-weight: 750;
}

.dandi-board-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
}

.dandi-board-main,
.dandi-side-panel,
.dandi-list-panel {
    padding: 22px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 14px 32px rgba(18, 49, 63, 0.06);
}

.dandi-bullet-list {
    display: grid;
    gap: 8px;
}

.dandi-bullet-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 120px 120px;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #f9fcfb;
    border: 1px solid #e2eee9;
}

.dandi-bullet-item strong {
    color: var(--care-navy);
    font-size: 15px;
    font-weight: 950;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dandi-bullet-item em,
.dandi-bullet-item b {
    color: #5e747b;
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
}

.dandi-badge-hot,
.dandi-row-badge.hot {
    background: #fff0e6;
    color: #d85d12;
    border: 1px solid #ffd3b6;
}

.dandi-notice-list {
    display: grid;
    gap: 8px;
}

.dandi-notice-list a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #edf3f0;
}

.dandi-notice-list a:last-child {
    border-bottom: 0;
}

.dandi-notice-list strong {
    display: block;
    color: var(--care-navy);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
}

.dandi-notice-list span {
    display: block;
    margin-top: 5px;
    color: var(--care-muted);
    font-size: 12px;
    font-weight: 800;
}

.dandi-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dandi-job-card,
.dandi-resume-card {
    position: relative;
    display: block;
    min-height: 190px;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 14px 32px rgba(18, 49, 63, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dandi-job-card:hover,
.dandi-resume-card:hover {
    transform: translateY(-3px);
    border-color: #93d7ca;
    box-shadow: 0 22px 46px rgba(15, 143, 122, 0.13);
}

.dandi-badge,
.dandi-row-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.dandi-badge.premium,
.dandi-row-badge.premium {
    background: var(--care-mint);
    color: var(--care-green);
    border: 1px solid #bfe9df;
}

.dandi-row-badge.recommend {
    background: #fff8e8;
    color: #b7791f;
    border: 1px solid #f6d78f;
}

.dandi-row-badge.normal {
    background: #f1f6f4;
    color: #62777e;
    border: 1px solid #d8e6e1;
}

.dandi-job-card h3,
.dandi-resume-card h3 {
    margin: 16px 0 8px;
    color: var(--care-navy);
    font-size: 18px;
    line-height: 1.42;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.dandi-job-card p,
.dandi-resume-card p {
    margin: 0 0 12px;
    color: var(--care-muted);
    font-size: 13px;
    font-weight: 800;
}

.dandi-job-card div,
.dandi-resume-card div:not(.dandi-resume-avatar) {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dandi-job-card em,
.dandi-resume-card em {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f7fbfa;
    color: #58727a;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.dandi-job-card > strong {
    display: block;
    margin-top: 15px;
    color: #e5671b;
    font-size: 17px;
    font-weight: 950;
}

.dandi-resume-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dandi-resume-avatar {
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--care-mint), #fff8ef);
    border: 1px solid #dcebe6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dandi-resume-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dandi-resume-avatar span {
    color: var(--care-green);
    font-size: 24px;
    font-weight: 950;
}

.dandi-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dandi-mini-list {
    display: grid;
    gap: 7px;
}

.dandi-mini-list a {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 110px;
    gap: 10px;
    align-items: center;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 14px;
    background: #f9fcfb;
}

.dandi-mini-list span {
    color: var(--care-green);
    font-size: 12px;
    font-weight: 950;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dandi-mini-list strong {
    color: var(--care-navy);
    font-size: 14px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dandi-mini-list em {
    color: var(--care-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dandi-sub-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at right top, rgba(255, 138, 61, 0.18), transparent 22rem),
        linear-gradient(135deg, #e9f8f3, #ffffff);
    border: 1px solid #d7ebe5;
    box-shadow: 0 16px 38px rgba(18, 49, 63, 0.07);
}

.dandi-sub-hero h1 {
    margin: 12px 0 8px;
    color: var(--care-navy);
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.07em;
}

.dandi-sub-hero p {
    margin: 0;
    color: #506a72;
    line-height: 1.7;
    font-weight: 650;
}

.dandi-sub-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dandi-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.dandi-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    color: #536c74;
    font-size: 14px;
    font-weight: 900;
}

.dandi-tabs a.is-active,
.dandi-tabs a:hover {
    background: var(--care-navy);
    border-color: var(--care-navy);
    color: #ffffff;
}

.dandi-search-panel {
    margin: 18px 0;
    padding: 22px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 14px 32px rgba(18, 49, 63, 0.06);
}

.dandi-search-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dandi-search-row {
    display: grid;
    gap: 7px;
}

.dandi-search-row.is-keyword {
    margin-bottom: 12px;
}

.dandi-search-row label {
    color: var(--care-navy);
    font-size: 13px;
    font-weight: 950;
}

.dandi-search-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.dandi-result-toolbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: none !important;
    padding: 16px 18px !important;
    border-radius: 22px !important;
}

.dandi-job-table {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #dcebe6;
    box-shadow: 0 14px 32px rgba(18, 49, 63, 0.06);
}

.dandi-job-table-head,
.dandi-job-row {
    display: grid;
    grid-template-columns: 150px 140px minmax(0, 1fr) 180px 92px;
    gap: 14px;
    align-items: center;
}

.dandi-job-table-head {
    min-height: 46px;
    padding: 0 18px;
    background: #f0f8f5;
    color: #45646d;
    font-size: 13px;
    font-weight: 950;
}

.dandi-job-row {
    min-height: 92px;
    padding: 16px 18px;
    border-top: 1px solid #edf4f1;
    background: #ffffff;
}

.dandi-job-row.is-premium {
    background: linear-gradient(90deg, #fffaf2, #ffffff 38%);
}

.dandi-job-row:hover {
    background: #f8fcfa;
}

.dandi-job-member strong,
.dandi-job-field strong,
.dandi-job-condition strong {
    display: block;
    margin-top: 6px;
    color: var(--care-navy);
    font-size: 14px;
    font-weight: 950;
}

.dandi-job-field span,
.dandi-job-condition span,
.dandi-job-date {
    display: block;
    margin-top: 5px;
    color: var(--care-muted);
    font-size: 12px;
    font-weight: 800;
}

.dandi-job-subject h2 {
    margin: 0;
    color: var(--care-navy);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.dandi-job-subject p {
    margin: 7px 0 0;
    color: #62777e;
    font-size: 13px;
    line-height: 1.5;
}

.dandi-job-subject div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.dandi-job-subject div span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f3f8f6;
    color: #58727a;
    font-size: 12px;
    font-weight: 850;
}

.dandi-job-condition strong {
    margin-top: 0;
    color: #e5671b;
}

.dandi-job-date {
    margin-top: 0;
    text-align: right;
}

@media (max-width: 1080px) {
    .dandi-hero-panel,
    .dandi-board-layout,
    .dandi-two-column {
        grid-template-columns: 1fr;
    }

    .dandi-card-grid,
    .dandi-resume-grid,
    .dandi-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dandi-job-table-head {
        display: none;
    }

    .dandi-job-row {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 0;
    }

    .dandi-job-date {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .dandi-hero-panel {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .dandi-hero-copy h1 {
        font-size: 32px;
    }

    .dandi-main-search-row,
    .dandi-quick-actions,
    .dandi-stat-grid,
    .dandi-card-grid,
    .dandi-resume-grid,
    .dandi-category-grid,
    .dandi-search-grid,
    .dandi-mini-list a,
    .dandi-bullet-item {
        grid-template-columns: 1fr;
    }

    .dandi-sub-hero {
        display: block;
        padding: 24px 18px;
        border-radius: 24px;
    }

    .dandi-sub-actions {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .dandi-result-toolbar {
        display: grid !important;
        gap: 12px;
    }

    .job-result-options {
        justify-content: flex-start !important;
        flex-wrap: wrap;
    }

    .dandi-mini-list em {
        text-align: left;
    }
}

/* =========================================================
   2026-08-31 단디형 화면 가독성/정렬 최종 보정
   - 글자 굵기 완화
   - 총알구인 정렬 보정
   - 채용정보 목록 시인성 개선
========================================================= */

body,
input,
select,
textarea,
button {
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    font-weight: 400 !important;
    letter-spacing: -0.015em;
    color: #334155;
}

body {
    font-size: 15px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.035em;
    line-height: 1.35;
}

strong,
b,
.nav a,
.user-menu a,
.btn,
.badge,
.dandi-badge,
.dandi-row-badge,
.dandi-badge-hot {
    font-weight: 650 !important;
}

.dandi-label,
.dandi-section-title span,
.dandi-sub-hero span,
.dandi-tabs a,
.dandi-search-row label,
.dandi-stat-grid span,
.dandi-action-card span,
.dandi-category-grid span,
.dandi-job-field span,
.dandi-job-condition span,
.dandi-job-date,
.dandi-mini-list em,
.dandi-notice-list span {
    font-weight: 500 !important;
}

.dandi-hero-copy h1,
.dandi-section-title h2,
.dandi-sub-hero h1,
.container > .page-head .page-title {
    font-weight: 720 !important;
    color: #102733;
}

.dandi-hero-copy h1 {
    font-size: clamp(36px, 4.4vw, 58px) !important;
    line-height: 1.16 !important;
}

.dandi-section-title h2 {
    font-size: clamp(23px, 2.4vw, 31px) !important;
}

.dandi-section-title span,
.dandi-sub-hero span {
    color: #0f8f7a;
    font-size: 13px;
}

.dandi-hero-copy p,
.dandi-sub-hero p,
.dandi-job-subject p,
.dandi-job-card p,
.dandi-resume-card p,
.page-desc,
.help-text {
    color: #607580 !important;
    font-weight: 400 !important;
}

.dandi-action-card strong,
.dandi-category-grid strong,
.dandi-job-card h3,
.dandi-resume-card h3,
.dandi-mini-list strong,
.dandi-notice-list strong,
.dandi-job-subject h2,
.dandi-job-member strong,
.dandi-job-field strong,
.dandi-job-condition strong {
    font-weight: 680 !important;
    color: #122b37;
}

.dandi-action-card em,
.dandi-category-grid span,
.dandi-job-card em,
.dandi-resume-card em,
.dandi-job-subject div span,
.dandi-mini-list span,
.dandi-mini-list em {
    font-weight: 500 !important;
}

.dandi-job-card > strong,
.dandi-job-condition strong {
    color: #e05f16 !important;
    font-weight: 720 !important;
}

/* 메인 총알구인 정렬 보정 */
.dandi-bullet-list {
    gap: 10px !important;
}

.dandi-bullet-item,
.dandi-bullet-item-polished {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) 116px !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 62px !important;
    padding: 12px 14px !important;
    border-radius: 17px !important;
    background: #fbfefd !important;
    border: 1px solid #deebe6 !important;
    box-shadow: none !important;
}

.dandi-bullet-item:hover,
.dandi-bullet-item-polished:hover {
    background: #f4fbf8 !important;
    border-color: #b9ded5 !important;
}

.dandi-bullet-badge,
.dandi-badge-hot {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 86px !important;
    height: 30px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    background: #fff2e9 !important;
    border: 1px solid #ffd2b7 !important;
    color: #db6117 !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

.dandi-bullet-content {
    display: grid !important;
    gap: 4px !important;
    min-width: 0 !important;
}

.dandi-bullet-content strong,
.dandi-bullet-item strong {
    display: block !important;
    min-width: 0 !important;
    color: #102733 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 680 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.dandi-bullet-content em,
.dandi-bullet-item em {
    display: block !important;
    margin: 0 !important;
    color: #6a7e86 !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.dandi-bullet-pay,
.dandi-bullet-item b {
    display: block !important;
    margin: 0 !important;
    color: #e05f16 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    text-align: right !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
}

/* 메인 카드 가독성 보정 */
.dandi-job-card,
.dandi-resume-card,
.dandi-board-main,
.dandi-side-panel,
.dandi-list-panel,
.dandi-search-panel,
.dandi-job-table {
    box-shadow: 0 12px 28px rgba(18, 49, 63, 0.045) !important;
}

.dandi-job-card h3,
.dandi-resume-card h3 {
    font-size: 17px !important;
    line-height: 1.45 !important;
    letter-spacing: -0.035em !important;
}

.dandi-job-card p,
.dandi-resume-card p {
    font-size: 13px !important;
}

/* 채용정보 목록 가독성 보정 */
.dandi-job-table-head {
    min-height: 48px !important;
    color: #49646c !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.dandi-job-row {
    min-height: 102px !important;
    background: #ffffff !important;
}

.dandi-job-row.is-premium {
    background: linear-gradient(90deg, #fffaf3 0%, #ffffff 42%) !important;
}

.dandi-job-member strong,
.dandi-job-field strong,
.dandi-job-condition strong {
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.dandi-job-subject h2 {
    font-size: 18px !important;
    line-height: 1.42 !important;
    letter-spacing: -0.035em !important;
}

.dandi-job-subject p {
    margin-top: 6px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
}

.dandi-job-subject div span {
    min-height: 23px !important;
    background: #f3f8f6 !important;
    color: #58727a !important;
    font-size: 12px !important;
}

.dandi-row-badge {
    min-height: 25px !important;
    padding: 0 9px !important;
    font-size: 12px !important;
}

/* 관리자 화면 글자 굵기 완화 */
.admin-wrap,
.admin-wrap input,
.admin-wrap select,
.admin-wrap textarea,
.admin-wrap button,
.admin-layout,
.admin-layout input,
.admin-layout select,
.admin-layout textarea,
.admin-layout button {
    font-weight: 400 !important;
    letter-spacing: -0.015em;
}

.admin-sidebar a,
.admin-menu a,
.admin-topbar,
.admin-title,
.admin-card-title,
.admin-table th,
.admin-table strong {
    font-weight: 650 !important;
}

.admin-table td,
.admin-table p,
.admin-desc,
.admin-help {
    font-weight: 400 !important;
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }

    .dandi-hero-copy h1 {
        font-size: 32px !important;
    }

    .dandi-section-title h2,
    .dandi-sub-hero h1 {
        font-size: 23px !important;
    }

    .dandi-bullet-item,
    .dandi-bullet-item-polished {
        grid-template-columns: 74px minmax(0, 1fr) !important;
        min-height: 58px !important;
    }

    .dandi-bullet-pay,
    .dandi-bullet-item b {
        grid-column: 2 / 3;
        text-align: left !important;
        white-space: normal !important;
    }

    .dandi-bullet-badge,
    .dandi-badge-hot {
        width: 72px !important;
        height: 28px !important;
        font-size: 12px !important;
    }

    .dandi-bullet-content strong,
    .dandi-bullet-item strong,
    .dandi-job-subject h2 {
        font-size: 15px !important;
    }
}

/* =========================================================
   2026-08-31 헤더/다크카드 최종 보정
   - 다크 카드 글자 대비 보정
   - 로그인/회원가입 버튼 중앙 정렬
   - PC 상단 메뉴 구분감 강화
   - 모바일 메뉴 구조 유지
========================================================= */

/* 1. 다크 배경 카드의 글자가 묻히는 문제 보정 */
.dandi-action-card.is-green,
.dandi-action-card.is-orange,
.dandi-action-card.is-blue,
.hero-dark-card,
.resume-highlight-card,
.info-dark-card {
    color: #ffffff !important;
}

.dandi-action-card.is-green *,
.dandi-action-card.is-orange *,
.dandi-action-card.is-blue *,
.hero-dark-card *,
.resume-highlight-card *,
.info-dark-card * {
    color: rgba(255, 255, 255, 0.88) !important;
}

.dandi-action-card.is-green strong,
.dandi-action-card.is-orange strong,
.dandi-action-card.is-blue strong,
.hero-dark-card h2,
.hero-dark-card .card-title,
.resume-highlight-card h2,
.resume-highlight-card .card-title,
.info-dark-card h2,
.info-dark-card .card-title {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.dandi-action-card.is-green span,
.dandi-action-card.is-green em,
.dandi-action-card.is-orange span,
.dandi-action-card.is-orange em,
.dandi-action-card.is-blue span,
.dandi-action-card.is-blue em,
.hero-dark-card p,
.resume-highlight-card p,
.info-dark-card p {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500 !important;
}

.dandi-action-card.is-blue {
    background: linear-gradient(135deg, #12313f 0%, #071b24 100%) !important;
}

/* 2. PC 헤더 구조: 로고 / 메인메뉴 / 등록메뉴 / 로그인 영역 분리 */
@media (min-width: 901px) {
    .helper-header {
        background: rgba(255, 255, 255, 0.96) !important;
        border-bottom: 1px solid #e7edf3 !important;
        box-shadow: 0 8px 24px rgba(18, 49, 63, 0.045) !important;
    }

    .helper-header .helper-header-inner {
        max-width: 1280px !important;
        min-height: 82px !important;
        padding: 0 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 28px !important;
    }

    .helper-header .logo,
    .helper-header .logo-img-link {
        flex: 0 0 auto !important;
        min-height: 48px !important;
        display: inline-flex !important;
        align-items: center !important;
        color: #0f8f7a !important;
        font-size: 28px !important;
        font-weight: 800 !important;
        letter-spacing: -0.055em !important;
        line-height: 1 !important;
    }

    .helper-header .site-logo-img {
        height: 42px !important;
        max-width: 188px !important;
        object-fit: contain !important;
    }

    .helper-header .header-menu-panel {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 0 0 auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        gap: 24px !important;
    }

    .helper-header .mobile-menu-head {
        display: none !important;
    }

    .helper-header .main-nav {
        display: flex !important;
        align-items: center !important;
        gap: 30px !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    .helper-header .main-nav a {
        position: relative;
        min-height: auto !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #24364b !important;
        font-size: 16px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
    }

    .helper-header .main-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -14px;
        width: 0;
        height: 2px;
        border-radius: 999px;
        background: #0f8f7a;
        transform: translateX(-50%);
        transition: width 0.18s ease;
    }

    .helper-header .main-nav a:hover {
        color: #0f8f7a !important;
        background: transparent !important;
    }

    .helper-header .main-nav a:hover::after {
        width: 100%;
    }

    .helper-header .header-side-links {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-left: 2px !important;
        padding-left: 22px !important;
        border-left: 1px solid #e5e7eb !important;
        color: #9aa7b2 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-side-links a {
        color: #111827 !important;
        font-size: 15px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
    }

    .helper-header .header-side-links a:hover {
        color: #0f8f7a !important;
    }

    .helper-header .header-side-links span {
        color: #cbd5e1 !important;
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .helper-header .header-auth,
    .helper-header .user-menu {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 9px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-auth > strong,
    .helper-header .user-menu > strong {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 40px !important;
        padding: 0 4px !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 40px !important;
        height: 40px !important;
        padding: 0 17px !important;
        border: 1px solid #d7dee5 !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
        box-shadow: none !important;
    }

    .helper-header .header-auth a:hover,
    .helper-header .user-menu a:hover {
        border-color: #0f8f7a !important;
        color: #0f8f7a !important;
        background: #f6fffc !important;
    }
}

/* 3. 화면 폭이 좁은 PC에서는 메뉴 간격을 자연스럽게 축소 */
@media (min-width: 901px) and (max-width: 1180px) {
    .helper-header .helper-header-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
        gap: 18px !important;
    }

    .helper-header .main-nav {
        gap: 20px !important;
    }

    .helper-header .main-nav a {
        font-size: 15px !important;
    }

    .helper-header .header-side-links {
        gap: 9px !important;
        padding-left: 16px !important;
    }

    .helper-header .header-side-links a {
        font-size: 14px !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu a {
        min-height: 38px !important;
        height: 38px !important;
        padding: 0 13px !important;
        font-size: 13px !important;
    }
}

/* 4. 모바일 메뉴 안에서도 메인메뉴/등록메뉴/로그인메뉴를 명확하게 분리 */
@media (max-width: 900px) {
    .helper-header .header-menu-panel {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 4000 !important;
        width: 304px !important;
        max-width: 86vw !important;
        height: 100vh !important;
        padding: 20px !important;
        margin: 0 !important;
        background: #ffffff !important;
        box-shadow: -24px 0 60px rgba(18, 49, 63, 0.24) !important;
        overflow-y: auto !important;
    }

    .helper-header .header-menu-panel.is-open {
        display: block !important;
    }

    .helper-header .main-nav {
        display: grid !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 0 14px !important;
        padding: 0 0 14px !important;
        border-bottom: 1px solid #e7edf3 !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    .helper-header .main-nav a {
        display: flex !important;
        align-items: center !important;
        min-height: 43px !important;
        padding: 0 14px !important;
        border-radius: 13px !important;
        background: #f8fafc !important;
        color: #12313f !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
    }

    .helper-header .header-side-links {
        display: grid !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 0 14px !important;
        padding: 0 0 14px !important;
        border-bottom: 1px solid #e7edf3 !important;
    }

    .helper-header .header-side-links span {
        display: none !important;
    }

    .helper-header .header-side-links a {
        display: flex !important;
        align-items: center !important;
        min-height: 42px !important;
        padding: 0 14px !important;
        border-radius: 13px !important;
        background: #fff8ef !important;
        border: 1px solid #ffe1c5 !important;
        color: #c85f16 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
    }

    .helper-header .header-auth,
    .helper-header .user-menu {
        display: grid !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        white-space: normal !important;
    }

    .helper-header .header-auth > strong,
    .helper-header .user-menu > strong {
        display: block !important;
        margin: 0 0 4px !important;
        color: #12313f !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 42px !important;
        padding: 0 14px !important;
        border-radius: 13px !important;
        background: #ffffff !important;
        border: 1px solid #d7dee5 !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
    }

    .helper-header .header-auth a:hover,
    .helper-header .user-menu a:hover,
    .helper-header .main-nav a:hover {
        border-color: #0f8f7a !important;
        color: #0f8f7a !important;
        background: #f6fffc !important;
    }
}



/* =========================================================
   2026-08-31 이력서 관리 화면 깨짐/수정 버튼 보정
   - 기존 .resume-list / .resume-card 충돌을 피하기 위해
     마이페이지 전용 클래스만 강제 적용
========================================================= */

.my-resume-page-head {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.my-resume-list {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
}

.my-resume-card {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 154px;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid #dfeae6;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 49, 63, 0.06);
}

.my-resume-photo-box {
    width: 96px;
    height: 96px;
}

.my-resume-photo {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
    background: linear-gradient(135deg, #e7f3ff, #f8fbff);
    color: #0f8f7a;
    font-size: 13px;
    font-weight: 700 !important;
    letter-spacing: 0;
}

.my-resume-photo.is-empty {
    border: 1px solid #dbe7f3;
}

.my-resume-main {
    min-width: 0;
}

.my-resume-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.my-resume-title-row h2 {
    min-width: 0;
    margin: 0;
    color: #122b37;
    font-size: 19px;
    font-weight: 700 !important;
    line-height: 1.35;
    letter-spacing: -0.03em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.my-resume-public {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e8f7f3;
    color: #0f8f7a;
    font-size: 12px;
    font-weight: 650 !important;
}

.my-resume-public.비공개 {
    background: #f1f5f9;
    color: #64748b;
}

.my-resume-member {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin: 8px 0 0;
    color: #506a72;
    font-size: 14px;
    line-height: 1.5;
}

.my-resume-member strong {
    color: #122b37;
    font-weight: 650 !important;
}

.my-resume-member span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.my-resume-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.my-resume-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f8f6;
    color: #58727a;
    font-size: 12px;
    font-weight: 500 !important;
}

.my-resume-side {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.my-resume-date {
    color: #7a8d95;
    font-size: 12px;
    font-weight: 500 !important;
    white-space: nowrap;
}

.my-resume-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}

.my-resume-actions .btn {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    white-space: nowrap;
}

.resume-current-photo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #dfeae6;
    border-radius: 16px;
    background: #f9fcfb;
}

.resume-current-photo img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
}

.resume-current-photo span {
    color: #607580;
    font-size: 13px;
    line-height: 1.5;
}

.form-actions-row {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

@media (max-width: 760px) {
    .my-resume-card {
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
        padding: 16px;
        border-radius: 20px;
    }

    .my-resume-photo-box,
    .my-resume-photo {
        width: 76px;
        height: 76px;
        border-radius: 20px;
    }

    .my-resume-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .my-resume-title-row h2 {
        width: 100%;
        font-size: 17px;
        white-space: normal;
    }

    .my-resume-member {
        display: grid;
        gap: 4px;
        font-size: 13px;
    }

    .my-resume-side {
        grid-column: 1 / -1;
        justify-items: stretch;
        gap: 10px;
        padding-top: 12px;
        border-top: 1px solid #edf4f1;
    }

    .my-resume-date {
        white-space: normal;
    }

    .my-resume-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .form-actions-row {
        justify-content: stretch;
    }

    .form-actions-row .btn {
        flex: 1 1 0;
    }
}

/* =========================================================
   2026-08-31 PC 헤더 넓이 초과 최종 보정
   - 로그인 후 메뉴가 우측으로 벗어나는 현상 해결
   - 1100px 이하부터는 햄버거 메뉴로 전환
   - PC에서는 메인메뉴 / 등록메뉴 / 로그인영역을 한 줄로 안정 배치
========================================================= */

.header.helper-header,
.helper-header {
    overflow: visible !important;
}

@media (min-width: 1101px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        width: 100% !important;
        max-width: 1360px !important;
        min-height: 76px !important;
        margin: 0 auto !important;
        padding: 0 clamp(18px, 2.2vw, 34px) !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow: visible !important;
    }

    .helper-header .logo-img-link,
    .helper-header .logo {
        flex: 0 0 auto !important;
        max-width: 154px !important;
        min-width: 92px !important;
        min-height: 42px !important;
        margin-right: clamp(22px, 3vw, 44px) !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    .helper-header .site-logo-img {
        height: 36px !important;
        max-width: 154px !important;
        object-fit: contain !important;
    }

    .helper-header .mobile-menu-btn,
    .helper-header .mobile-menu-head,
    .helper-header .mobile-menu-close,
    .helper-header .mobile-menu-backdrop {
        display: none !important;
    }

    .helper-header .header-menu-panel {
        position: static !important;
        inset: auto !important;
        z-index: auto !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: clamp(12px, 1.4vw, 22px) !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .helper-header .main-nav,
    .helper-header .nav {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: clamp(14px, 1.75vw, 28px) !important;
        overflow: visible !important;
        white-space: nowrap !important;
        font-size: 15px !important;
    }

    .helper-header .main-nav a,
    .helper-header .nav a {
        flex: 0 0 auto !important;
        min-height: 38px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #24364b !important;
        font-size: 15px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
    }

    .helper-header .main-nav a:hover,
    .helper-header .nav a:hover {
        color: #0f8f7a !important;
        background: transparent !important;
    }

    .helper-header .header-side-links {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding-left: 18px !important;
        border-left: 1px solid #e5ebef !important;
        color: #cbd5e1 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-side-links a {
        display: inline-flex !important;
        align-items: center !important;
        min-height: 38px !important;
        padding: 0 !important;
        color: #111827 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-side-links a:hover {
        color: #0f8f7a !important;
    }

    .helper-header .header-side-links span {
        display: inline-flex !important;
        color: #cbd5e1 !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }

    .helper-header .header-auth,
    .helper-header .user-menu.header-auth {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-auth strong {
        max-width: 82px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        flex: 0 0 auto !important;
        min-height: 40px !important;
        padding: 0 15px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #d8e1ea !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    .helper-header .header-auth a:hover,
    .helper-header .user-menu.header-auth a:hover {
        border-color: #0f8f7a !important;
        color: #0f8f7a !important;
        background: #f4fbf8 !important;
    }
}

@media (min-width: 1101px) and (max-width: 1320px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        max-width: none !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .helper-header .logo-img-link,
    .helper-header .logo {
        margin-right: 26px !important;
        max-width: 138px !important;
    }

    .helper-header .site-logo-img {
        max-width: 138px !important;
    }

    .helper-header .main-nav,
    .helper-header .nav {
        gap: 18px !important;
    }

    .helper-header .main-nav a,
    .helper-header .nav a {
        font-size: 14px !important;
    }

    .helper-header .header-side-links {
        gap: 8px !important;
        padding-left: 14px !important;
    }

    .helper-header .header-side-links a {
        font-size: 13px !important;
    }

    /* 중간 폭에서는 가장 긴 메뉴만 숨겨서 우측 버튼 영역을 확보 */
    .helper-header .header-side-links a:last-of-type,
    .helper-header .header-side-links span:last-of-type {
        display: none !important;
    }

    .helper-header .header-auth strong {
        display: none !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        min-height: 38px !important;
        padding-left: 13px !important;
        padding-right: 13px !important;
        font-size: 13px !important;
    }
}

/* 1100px 이하는 메뉴가 길어지지 않도록 햄버거로 전환 */
@media (max-width: 1100px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        max-width: none !important;
        min-height: 62px !important;
        padding: 10px 16px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }

    .helper-header .logo-img-link,
    .helper-header .logo {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        min-height: 40px !important;
        margin: 0 !important;
    }

    .helper-header .site-logo-img {
        height: 32px !important;
        max-width: 148px !important;
    }

    .helper-header .mobile-menu-btn {
        flex: 0 0 42px !important;
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        border: 1px solid #d8e1ea !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 3001 !important;
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06) !important;
    }

    .helper-header .mobile-menu-btn span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        border-radius: 999px !important;
        background: #0f172a !important;
    }

    .helper-header .mobile-menu-backdrop {
        display: none !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 3990 !important;
        background: rgba(15, 23, 42, 0.50) !important;
        backdrop-filter: blur(3px) !important;
    }

    .helper-header .mobile-menu-backdrop.is-open {
        display: block !important;
    }

    .helper-header .header-menu-panel {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 4000 !important;
        width: 310px !important;
        max-width: 86vw !important;
        height: 100vh !important;
        padding: 20px !important;
        margin: 0 !important;
        background: #ffffff !important;
        box-shadow: -24px 0 60px rgba(15, 23, 42, 0.22) !important;
        overflow-y: auto !important;
    }

    .helper-header .header-menu-panel.is-open {
        display: block !important;
    }

    .helper-header .mobile-menu-head {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding-bottom: 16px !important;
        margin-bottom: 16px !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .helper-header .mobile-menu-head strong {
        color: #0f172a !important;
        font-size: 17px !important;
        font-weight: 750 !important;
    }

    .helper-header .mobile-menu-close {
        display: inline-flex !important;
        width: 36px !important;
        height: 36px !important;
        align-items: center !important;
        justify-content: center !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #f1f5f9 !important;
        color: #0f172a !important;
        font-size: 24px !important;
        line-height: 1 !important;
        cursor: pointer !important;
    }

    .helper-header .main-nav,
    .helper-header .nav {
        width: 100% !important;
        display: grid !important;
        gap: 8px !important;
        margin: 0 0 16px !important;
        padding: 0 !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    .helper-header .main-nav a,
    .helper-header .nav a {
        display: flex !important;
        align-items: center !important;
        min-height: 44px !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        background: #f8fafc !important;
        color: #0f172a !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    .helper-header .header-side-links {
        width: 100% !important;
        display: grid !important;
        gap: 8px !important;
        margin: 0 0 16px !important;
        padding: 0 0 16px !important;
        border-left: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    .helper-header .header-side-links span {
        display: none !important;
    }

    .helper-header .header-side-links a {
        display: flex !important;
        align-items: center !important;
        min-height: 42px !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        background: #fff7ed !important;
        border: 1px solid #fed7aa !important;
        color: #c2410c !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    .helper-header .header-auth,
    .helper-header .user-menu.header-auth {
        width: 100% !important;
        display: grid !important;
        justify-content: stretch !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        white-space: normal !important;
    }

    .helper-header .header-auth strong {
        display: block !important;
        margin: 0 0 4px !important;
        color: #0f172a !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 42px !important;
        padding: 0 14px !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        color: #334155 !important;
        font-size: 14px !important;
        font-weight: 650 !important;
    }

    body.mobile-menu-open {
        overflow: hidden !important;
    }
}

/* =========================================================
   2026-08-31 헤더 기존 폭 유지 + 메뉴 간결화 최종 보정
   - 소개파견업체등록 제거 후 1160px 컨테이너 폭에 맞춤
   - 로고 영역 축소, 메뉴 간격 압축
   - 로그인 상태에서도 우측으로 벗어나지 않게 정리
========================================================= */

@media (min-width: 1101px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        width: 100% !important;
        max-width: 1160px !important;
        min-height: 74px !important;
        margin: 0 auto !important;
        padding: 0 18px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        overflow: visible !important;
    }

    .helper-header .logo-img-link,
    .helper-header .logo {
        flex: 0 0 auto !important;
        min-width: 78px !important;
        max-width: 122px !important;
        min-height: 40px !important;
        margin-right: 28px !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
        font-size: 21px !important;
        line-height: 1 !important;
    }

    .helper-header .site-logo-img {
        height: 32px !important;
        max-width: 122px !important;
        object-fit: contain !important;
    }

    .helper-header .mobile-menu-btn,
    .helper-header .mobile-menu-head,
    .helper-header .mobile-menu-close,
    .helper-header .mobile-menu-backdrop {
        display: none !important;
    }

    .helper-header .header-menu-panel {
        position: static !important;
        inset: auto !important;
        z-index: auto !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 15px !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
        transform: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .helper-header .main-nav,
    .helper-header .nav {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 22px !important;
        overflow: visible !important;
        white-space: nowrap !important;
    }

    .helper-header .main-nav a,
    .helper-header .nav a {
        flex: 0 0 auto !important;
        min-height: 38px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #24364b !important;
        font-size: 14px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        letter-spacing: -0.025em !important;
    }

    .helper-header .main-nav a:hover,
    .helper-header .nav a:hover {
        color: #0f8f7a !important;
        background: transparent !important;
    }

    .helper-header .header-side-links {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 9px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding-left: 16px !important;
        border-left: 1px solid #e5ebef !important;
        color: #cbd5e1 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-side-links a {
        display: inline-flex !important;
        align-items: center !important;
        min-height: 38px !important;
        padding: 0 !important;
        color: #111827 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        font-size: 13px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .helper-header .header-side-links a:hover {
        color: #0f8f7a !important;
    }

    .helper-header .header-side-links span {
        display: inline-flex !important;
        color: #cbd5e1 !important;
        font-size: 12px !important;
        line-height: 1 !important;
    }

    .helper-header .header-auth,
    .helper-header .user-menu.header-auth {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 7px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        white-space: nowrap !important;
    }

    /* 로그인 후 이름은 버튼 공간을 압박하므로 PC 헤더에서는 숨김 */
    .helper-header .header-auth strong {
        display: none !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        flex: 0 0 auto !important;
        min-height: 38px !important;
        padding: 0 13px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #d8e1ea !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: #334155 !important;
        font-size: 13px !important;
        font-weight: 650 !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    .helper-header .header-auth a:hover,
    .helper-header .user-menu.header-auth a:hover {
        border-color: #0f8f7a !important;
        color: #0f8f7a !important;
        background: #f4fbf8 !important;
    }
}

/* 기존 1320px 보정에서 max-width:none으로 풀어둔 것을 다시 컨테이너 폭에 맞춤 */
@media (min-width: 1101px) and (max-width: 1320px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        max-width: 1160px !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .helper-header .logo-img-link,
    .helper-header .logo {
        margin-right: 22px !important;
        max-width: 112px !important;
    }

    .helper-header .site-logo-img {
        max-width: 112px !important;
        height: 30px !important;
    }

    .helper-header .main-nav,
    .helper-header .nav {
        gap: 18px !important;
    }

    .helper-header .main-nav a,
    .helper-header .nav a {
        font-size: 13px !important;
    }

    .helper-header .header-side-links {
        gap: 8px !important;
        padding-left: 13px !important;
    }

    .helper-header .header-side-links a,
    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        font-size: 12px !important;
    }

    .helper-header .header-auth a,
    .helper-header .user-menu.header-auth a {
        min-height: 36px !important;
        padding-left: 11px !important;
        padding-right: 11px !important;
    }
}

/* 약간 좁은 노트북 폭에서는 메뉴를 억지로 우겨넣지 않고 햄버거로 전환 */
@media (min-width: 901px) and (max-width: 1120px) {
    .helper-header .helper-header-inner,
    .header.helper-header .header-inner {
        max-width: 1160px !important;
        min-height: 62px !important;
        padding: 10px 16px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
    }
}

/* =========================================================
   마이페이지 이력서 관리 버튼 크기 축소
========================================================= */

.mypage-resume-actions,
.resume-private-actions,
.resume-action-box,
.resume-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mypage-resume-actions .btn,
.resume-private-actions .btn,
.resume-action-box .btn,
.resume-card-actions .btn,
.resume-list .btn {
    min-height: 30px !important;
    height: 30px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

.mypage-resume-actions .btn:hover,
.resume-private-actions .btn:hover,
.resume-action-box .btn:hover,
.resume-card-actions .btn:hover,
.resume-list .btn:hover {
    transform: none !important;
}

/* 삭제불가 버튼은 더 약하게 */
.resume-list .btn-line,
.resume-card-actions .btn-line,
.mypage-resume-actions .btn-line {
    color: #475569 !important;
    border-color: #d8e1ea !important;
    background: #ffffff !important;
}

/* 수정 버튼은 작지만 눈에 띄게 */
.resume-list .btn-soft,
.resume-card-actions .btn-soft,
.mypage-resume-actions .btn-soft {
    color: #0f766e !important;
    border-color: #bfe9df !important;
    background: #e9fbf7 !important;
}

@media (max-width: 640px) {
    .mypage-resume-actions .btn,
    .resume-private-actions .btn,
    .resume-action-box .btn,
    .resume-card-actions .btn,
    .resume-list .btn {
        min-height: 28px !important;
        height: 28px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
    }
}

/* =========================================================
   2026-08-31 메인 화면 글자 크기 축소 보정
   - index.asp 페이지 전용 보정
   - 기존 style.css의 큰 !important 규칙보다 뒤에서 적용
========================================================= */

.dandi-main-shell .dandi-hero-panel {
    padding: 30px 30px !important;
}

.dandi-main-shell .dandi-hero-copy h1 {
    font-size: clamp(30px, 3.2vw, 42px) !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
    letter-spacing: -0.055em !important;
}

.dandi-main-shell .dandi-hero-copy p {
    max-width: 580px !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}

.dandi-main-shell .dandi-label {
    min-height: 26px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
}

.dandi-main-shell .dandi-main-search {
    padding: 20px !important;
}

.dandi-main-shell .dandi-main-search strong {
    margin-bottom: 10px !important;
    font-size: 18px !important;
    font-weight: 650 !important;
}

.dandi-main-shell .dandi-search-tags a {
    min-height: 28px !important;
    padding: 0 9px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.dandi-main-shell .dandi-action-card {
    min-height: 108px !important;
    padding: 18px !important;
    border-radius: 22px !important;
}

.dandi-main-shell .dandi-action-card span,
.dandi-main-shell .dandi-action-card em {
    font-size: 12px !important;
    font-weight: 500 !important;
}

.dandi-main-shell .dandi-action-card strong {
    margin: 6px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.045em !important;
}

.dandi-main-shell .dandi-stat-grid div {
    padding: 16px !important;
    border-radius: 18px !important;
}

.dandi-main-shell .dandi-stat-grid strong {
    font-size: 24px !important;
    font-weight: 700 !important;
}

.dandi-main-shell .dandi-stat-grid span {
    font-size: 12px !important;
    font-weight: 500 !important;
}

/* 메인 하단 섹션 제목/카드도 한 단계 축소 */
.dandi-section-title h2 {
    font-size: clamp(20px, 2vw, 26px) !important;
    font-weight: 700 !important;
}

.dandi-section-title span {
    min-height: 26px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

.dandi-category-grid a {
    min-height: 82px !important;
    padding: 15px !important;
    border-radius: 19px !important;
}

.dandi-category-grid strong {
    font-size: 16px !important;
    font-weight: 650 !important;
}

.dandi-category-grid span {
    margin-top: 6px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.dandi-job-card,
.dandi-resume-card {
    min-height: 166px !important;
    padding: 16px !important;
    border-radius: 20px !important;
}

.dandi-job-card h3,
.dandi-resume-card h3 {
    margin: 12px 0 7px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    font-weight: 650 !important;
}

.dandi-job-card p,
.dandi-resume-card p {
    margin-bottom: 10px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.dandi-job-card em,
.dandi-resume-card em,
.dandi-job-subject div span {
    min-height: 22px !important;
    padding: 0 7px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

.dandi-job-card > strong {
    margin-top: 12px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.dandi-bullet-content strong,
.dandi-bullet-item strong {
    font-size: 14px !important;
    font-weight: 650 !important;
}

.dandi-bullet-content em,
.dandi-bullet-item em,
.dandi-bullet-pay,
.dandi-bullet-item b {
    font-size: 11.5px !important;
    font-weight: 500 !important;
}

.dandi-mini-list strong,
.dandi-notice-list strong {
    font-size: 13px !important;
    font-weight: 650 !important;
}

.dandi-board-main,
.dandi-side-panel,
.dandi-list-panel {
    padding: 18px !important;
    border-radius: 22px !important;
}

@media (max-width: 900px) {
    .dandi-main-shell .dandi-hero-panel {
        padding: 24px 18px !important;
    }

    .dandi-main-shell .dandi-hero-copy h1 {
        font-size: 28px !important;
    }

    .dandi-main-shell .dandi-hero-copy p {
        font-size: 13px !important;
    }

    .dandi-section-title h2 {
        font-size: 21px !important;
    }

    .dandi-main-shell .dandi-action-card strong {
        font-size: 18px !important;
    }

    .dandi-main-shell .dandi-stat-grid strong {
        font-size: 22px !important;
    }
}

@media (max-width: 560px) {
    .dandi-main-shell .dandi-hero-copy h1 {
        font-size: 26px !important;
    }

    .dandi-section-title h2 {
        font-size: 20px !important;
    }
}
/* =========================================================
   /company/resume_scrap_list.asp 상세보기/삭제 버튼 최종 보정
   기존 .resume-search-card .resume-action-box .btn { width:100%; } 규칙보다
   반드시 style.css 맨 아래에 배치해야 적용됩니다.
========================================================= */

/* 스크랩 인재 카드 버튼 영역 */
.resume-search-card .resume-action-box,
.resume-scrap-card .resume-action-box,
.scrap-resume-card .resume-action-box,
.company-resume-scrap-list .resume-action-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    margin-top: 14px !important;
}

/* 삭제 form 이 버튼 하나처럼 크게 잡히는 현상 제거 */
.resume-search-card .resume-action-box form,
.resume-scrap-card .resume-action-box form,
.scrap-resume-card .resume-action-box form,
.company-resume-scrap-list .resume-action-box form {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 상세보기/삭제 버튼 크기 최종 축소 */
.resume-search-card .resume-action-box .btn,
.resume-scrap-card .resume-action-box .btn,
.scrap-resume-card .resume-action-box .btn,
.company-resume-scrap-list .resume-action-box .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 58px !important;
    max-width: none !important;
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    font-size: 10.5px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    box-shadow: none !important;
    transform: none !important;
    white-space: nowrap !important;
}

.resume-search-card .resume-action-box .btn:hover,
.resume-scrap-card .resume-action-box .btn:hover,
.scrap-resume-card .resume-action-box .btn:hover,
.company-resume-scrap-list .resume-action-box .btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 상세보기 */
.resume-search-card .resume-action-box .btn-primary,
.resume-search-card .resume-action-box .btn-soft,
.resume-scrap-card .resume-action-box .btn-primary,
.resume-scrap-card .resume-action-box .btn-soft,
.scrap-resume-card .resume-action-box .btn-primary,
.scrap-resume-card .resume-action-box .btn-soft,
.company-resume-scrap-list .resume-action-box .btn-primary,
.company-resume-scrap-list .resume-action-box .btn-soft {
    background: #0f8f7a !important;
    border: 1px solid #0f8f7a !important;
    color: #ffffff !important;
}

/* 삭제 */
.resume-search-card .resume-action-box .btn-danger,
.resume-scrap-card .resume-action-box .btn-danger,
.scrap-resume-card .resume-action-box .btn-danger,
.company-resume-scrap-list .resume-action-box .btn-danger {
    background: #ef4444 !important;
    border: 1px solid #ef4444 !important;
    color: #ffffff !important;
}

@media (max-width: 640px) {
    .resume-search-card .resume-action-box,
    .resume-scrap-card .resume-action-box,
    .scrap-resume-card .resume-action-box,
    .company-resume-scrap-list .resume-action-box {
        justify-content: flex-start !important;
        gap: 5px !important;
        flex-wrap: wrap !important;
    }

    .resume-search-card .resume-action-box .btn,
    .resume-scrap-card .resume-action-box .btn,
    .scrap-resume-card .resume-action-box .btn,
    .company-resume-scrap-list .resume-action-box .btn {
        min-width: 54px !important;
        min-height: 25px !important;
        height: 25px !important;
        padding: 0 9px !important;
        font-size: 10px !important;
    }
}
