  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ivory: #F9F5EE;
    --cream: #EFE8D8;
    --deep: #1A1A16;
    --charcoal: #3A3830;
    --muted: #7A7060;
    --gold: #B8A278;
    --gold-light: #D4C09A;
    --accent: #2C5F52;
    --accent-light: #EAF2EF;
    --white: #FFFFFF;
    --border: rgba(90, 80, 60, 0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--ivory);
    color: var(--deep);
    line-height: 1.7;
    font-size: 16px;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--deep);
    color: var(--gold-light);
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 9px 20px;
  }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--deep);
    letter-spacing: -0.02em;
    line-height: 1.2;
    a{
      color: var(--deep);
      text-decoration: none;
    }
  }
  .logo span { display: block; font-size: 10px; font-weight: 300; letter-spacing: 0.15em; color: var(--muted); font-family: 'Noto Sans KR', sans-serif; margin-top: 2px; }

  nav { display: flex; gap: 28px; }
  nav a {/* font-size: 13px; */color: var(--muted);text-decoration: none;letter-spacing: 0.04em;transition: color 0.2s;}
  nav a:hover { color: var(--accent); }

  /* ── HERO ── */
  .hero {
    background: var(--deep);
    color: var(--white);
    padding: 80px 40px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(44,95,82,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-tag {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .hero h1 em {
    color: var(--gold-light);
    font-style: normal;
  }
  .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    margin-bottom: 48px;
  }

  .hero-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 28px 36px;
    min-width: 200px;
    position: relative;
    transition: border-color 0.3s;
  }
  .hero-card:hover { border-color: var(--gold); }
  .hero-card .num {
    font-family: 'Noto Serif KR', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
  }
  .hero-card h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-card p {
    /* font-size: 13px; */
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
  }
  .badge-new {
    position: absolute;
    top: -17px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    /* font-size: 10px; */
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 10px;
  }

  /* ── SECTION COMMONS ── */
  section { padding: 80px 40px; }
  .section-inner {max-width: 1200px;margin: 0 auto;}
  .section-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--deep);
    margin-bottom: 36px;
  }
  .divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 0 40px;
  }


  /* ── MODEL TYPES ── */
  .model-section { background: var(--white); }

  /* 주걱턱 단일 케이스 모집 → 섹션 전체 폭을 쓰는 1열 */
  .model-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .model-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .model-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

  .model-card-header {
    padding: 32px 32px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }
  .model-type-badge {
    display: inline-block;
    background: var(--deep);
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  .model-card h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .model-card .sub {
    font-size: 14px;
    color: var(--muted);
  }

  .model-card-body { padding: 28px 32px; }

  .info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .info-row:last-child { border-bottom: none; }
  .info-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent);
    min-width: 80px;
    padding-top: 1px;
  }
  .info-val {/* font-size: 16px; */color: var(--charcoal);line-height: 1.7;}

  .tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .tag {
    background: var(--accent-light);
    color: var(--accent);
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
  }

  /* ── 단일 케이스 와이드 카드 ── */
  .model-card.featured {
    border-top: 3px solid var(--gold);
    background: var(--white);
  }
  .model-card.featured .model-card-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 40px 28px;
  }
  .model-card.featured .model-head-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .recruit-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 20px;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    animation: pulseDot 1.6s ease-in-out infinite;
  }
  @keyframes pulseDot {
    0%, 100% { opacity: 0.35; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.15); }
  }

  .model-card.featured .model-card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    padding: 10px 40px 34px;
  }
  .model-card.featured .info-row {
    display: block;
    padding: 20px 0;
  }
  .model-card.featured .info-row:nth-last-child(-n+2) { border-bottom: none; }
  .model-card.featured .info-label {
    display: block;
    min-width: 0;
    margin-bottom: 6px;
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  .model-card.featured .info-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background: var(--gold);
    margin-right: 8px;
    vertical-align: middle;
  }

  @media (max-width: 680px) {
    .model-card.featured .model-card-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding: 26px 22px 22px;
    }
    .model-card.featured .model-head-side {
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .model-card.featured .model-card-body {
      grid-template-columns: 1fr;
      column-gap: 0;
      padding: 6px 22px 26px;
    }
    .model-card.featured .info-row {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .model-card.featured .info-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
    .model-card.featured .info-row:last-child { border-bottom: none; }
  }
  @media (max-width: 600px) {
    .model-card.featured .model-card-header { padding: 24px 16px 20px; }
    .model-card.featured .model-card-body { padding: 4px 16px 22px; }
    .model-card.featured .info-label { font-size: 14px; }
  }

  /* ── BENEFITS ── */
  .benefits-section { background: var(--ivory); }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .benefit-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 15px;
  }
  .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 10px;
    font-size: 28px;
    font-size: 38px;
    margin-bottom: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 60px;
  }
  .benefit-item h4 {font-size: 1.2em;font-weight: 700;margin-bottom: 6px;color: var(--deep);}
  .benefit-item p {/* font-size: 13px; */color: var(--muted);line-height: 1.65;}

  /* ── PHOTO GUIDE ── */
  .photo-section { background: var(--deep); color: var(--white); }
  .photo-section .section-title { color: var(--white); }
  .photo-section .divider { background: var(--gold); }

  .photo-notice {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 15px;
    margin-bottom: 32px;
  }
  .notice-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
  }
  .notice-bullet {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 11px;
    flex-shrink: 0;
  }
  .notice-point p {/* font-size: 14px; *//* color: rgba(255,255,255,0.75); */line-height: 1.7;}
  .notice-point strong { color: var(--gold-light); }

  .photo-angles {
    display: flex;
    gap: 12px;
    justify-content: center;
  }


  .angle-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 8px;
    transition: border-color 0.2s;
    img{
      width:100%;
      display:block;
       }
  }
  .angle-box:hover { border-color: var(--gold); }
  .angle-box svg { width: 36px; height: 36px; opacity: 0.6; }
  .angle-box span {/* font-size: 12px; */color: rgba(255,255,255,0.5);text-align: center;line-height: 1.4;letter-spacing: 0.03em;}

  @media (max-width: 680px) { 
    .photo-angles {display: flex;gap: 10px;justify-content: center;flex-wrap: wrap;} 
    .photo-angles .angle-box {
      min-width: 0;flex: 48%;padding: 0 0 14px;overflow: hidden;aspect-ratio: auto;
      svg{display:none;}
                             } 
    .photo-angles .angle-box img { max-width: 100%; } 
    .photo-angles .angle-box:first-child{
      flex:100%;
      gap: 14px;
    }
    .benefit-item p{
      font-size:14px;
    }
    .angle-box span{
      font-size:14px;
    }
  }


  /* ── PROCESS ── */
  .process-section { background: var(--cream); }

  .process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
  }
  .step {
    flex: 1;
    min-width: 130px;
    text-align: center;
    position: relative;
  }
  .step::after {
    content: '→';
    position: absolute;
    top: 18px; right: -10px;
    color: var(--gold);
    font-size: 16px;
  }
  .step:last-child::after { display: none; }

  .step-circle {
    width: 48px;
    height: 48px;
    background: var(--deep);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif KR', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 14px;
  }
  .step h4 {font-size: 24px;font-weight: 700;color: var(--deep);margin-bottom: 6px;}
  .step p {/* font-size: 12px; */color: var(--muted);line-height: 1.6;padding: 0 8px;}

  /* ── FORM ── */
  .form-section { background: var(--white); }

  .form-wrap {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 44px;
  }

  @media (max-width: 640px) {
    .form-wrap {padding: 32px 15px;}
 }

  .form-row { margin-bottom: 20px; }
  .form-row label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  .form-row label .req { color: var(--accent); margin-left: 2px; }

  .form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
  .form-grid > .form-row { min-width: 0; margin-bottom: 0; }
  @media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

  input[type=text], input[type=tel], input[type=number], select, textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    color: var(--deep);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(44,95,82,0.1);
  }
  textarea { resize: vertical; min-height: 90px; }

  .model-type-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .model-type-select.single { grid-template-columns: 1fr; }
  .type-option {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .type-option input { display: none; }
  .type-option:has(input:checked) {
    border-color: var(--accent);
    background: var(--accent-light);
  }
  .type-option .type-name {font-size: 20px;font-weight: 700;color: var(--deep);margin-bottom: 4px;}
  .type-option .type-desc {/* font-size: 12px; */color: var(--muted);}

  .file-area {
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--white);
  }
  .file-area:hover { border-color: var(--accent); background: var(--accent-light); }
  .file-area p {font-size: 14px;color: var(--muted);}
  .file-area strong {display: block;font-size: 18px;color: var(--charcoal);margin-bottom: 6px;max-width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}

  /* 사진 첨부 미리보기 */
  .file-area { position: relative; }
  .file-area.has-preview { padding: 6px; border-style: solid; border-color: var(--accent); background: var(--white); }
  .file-area.has-preview strong,
  .file-area.has-preview p { display: none; }
  .file-area .file-preview {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
  }
  .file-area .file-preview-hint {
    position: absolute;
    left: 6px; right: 6px; bottom: 6px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 6px 8px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }
  .file-area.has-preview:hover .file-preview-hint { opacity: 1; }
  .file-area.compact.has-preview .file-preview { height: 120px; }

  /* 사진 첨부 5분할 그리드 */
  .file-grid-note {/* font-size: 13px; */color: var(--muted);margin: -2px 0 20px;}
  .file-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .file-grid .file-item { min-width: 0; }
  .file-grid .file-item-label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 8px;
    white-space: nowrap;
  }
  .file-grid .file-item-label .req { color: var(--accent); margin-left: 2px; }
  .file-grid .file-area {
    padding: 14px 8px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .file-grid .file-area strong {/* font-size: 15px; */margin-bottom: 4px;}
  .file-grid .file-area p {/* font-size: 12px; */}
  .file-grid .file-area.has-preview { min-height: 0; padding: 6px; }
  .file-grid .file-area.has-preview .file-preview { height: 150px; }

  @media (max-width: 600px) {
    .file-grid { grid-template-columns: 1fr; gap: 14px; }
    .file-grid .file-item-label { text-align: left; }
    .file-grid .file-area.has-preview .file-preview { height: 200px; }
  }

  .agree-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px 15px 16px;
    margin-bottom: 28px;
  }
  .agree-check {
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-size: 14px; */
    color: var(--charcoal);
    cursor: pointer;
    margin-bottom: 8px;
  }
  .agree-check:last-child { margin-bottom: 0; }
  .agree-check input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }

  .submit-btn {
    width: 100%;
    background: var(--deep);
    color: var(--gold-light);
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .submit-btn:hover { background: var(--charcoal); transform: translateY(-1px); }
  .submit-btn:active { transform: translateY(0); }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--deep);
    color: rgba(255,255,255,0.55);
    padding: 60px 40px 40px;
  }
  .footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
  }
  .footer-brand {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }
  .footer-info p {
    /* font-size: 13px; */
    line-height: 2;
    color: rgba(255,255,255,0.5);
  }
  .footer-info p + p { margin-top: 2px; }
  .footer-info span { margin-right: 16px; white-space: nowrap; }
  .footer-info b { color: rgba(255,255,255,0.72); font-weight: 500; }
  .footer-side { text-align: right; }
  .footer-nav {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .footer-nav a {
    /* font-size: 13px; */
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .footer-nav a:hover { color: var(--white); }
  .footer-sns {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
  }
  .footer-sns a {
    /* font-size: 12px; */
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-sns a:hover { color: var(--gold-light); }
  .footer-copy {
    max-width: 1200px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.35);
  }
  @media (max-width: 680px) {
    .site-footer {padding: 44px 15px 32px;}
    .footer-top {flex-direction: column;gap: 20px;display: flex;justify-content: center;align-items: center;text-align: center;}
    .footer-info p{font-size:13px;line-height: 1.5;}
    .footer-side {text-align: center;}
    .footer-nav, .footer-sns {justify-content: center;font-size: 13px;margin-bottom: 0;margin-top: 10px;}
    .footer-sns a{font-size:13px;}
    .footer-info span { display: block; margin-right: 0; white-space: normal; }
    input[type=text], input[type=tel], input[type=number], select, textarea{
      font-size: 14px;
    }
    .form-row label{
      font-size:16px;
    }
    .agree-check{
      font-size: 13px;
    }
    .model-type-select{
      display: flex;
      flex-direction: column;
    }
    .form-note{
      font-size:12px;
    }
    .footer-copy{
      font-size: 11px;
      margin-top: 20px;
      text-align: center;
    }
  }

  /* animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-card { animation: fadeUp 0.6s both; }
  .hero-card:nth-child(2) { animation-delay: 0.1s; }

  /* ── 인라인 스타일 → 클래스 정리 ── */
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-20 { margin-top: 20px; }
  .mt-28 { margin-top: 28px; }

  .nav-cta { color: var(--accent); font-weight: 700; }

  .file-area input[type="file"] { display: none; }
  .file-area.compact { padding: 18px; }
  .file-area.compact strong {/* font-size: 14px; */}

  .form-note {/* font-size: 12px; */color: var(--muted);text-align: center;margin-top: 24px;}

  /* 공통 지원 자격 */
  .shared-qual { margin-top: 28px; background: var(--cream); border-radius: 16px; padding: 28px 32px; }
  .shared-qual-title {font-size: 20px;font-weight: 700;letter-spacing: 0.08em;color: var(--accent);margin-bottom: 14px;}
  .shared-qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .qual-point { align-items: flex-start; gap: 10px; padding: 0; }
  .qual-bullet {width: 5px;height: 5px;background: var(--gold);border-radius: 50%;margin-top: 12px;flex-shrink: 0;}
  .qual-text {/* font-size: 15px; */color: var(--charcoal);}

  /* 사진 가이드 라벨 */
  .photo-example-label {/* font-size: 12px; */letter-spacing: 0.1em;color: var(--gold);margin-bottom: 16px;}
  .photo-warn {/* font-size: 14px; */color: rgba(255,255,255,0.35);margin-top: 24px;text-align: center;}

  /* ── 모바일 정리 (≤600px) ── */
  @media (max-width: 600px) {
    section { padding: 48px 20px; }
    .hero { padding: 56px 20px 48px; }
    .hero h1 { font-size: clamp(21px, 6.5vw, 28px); margin-bottom: 16px; }
    .hero-sub { margin-bottom: 36px; }
    /* 카드가 세로로 쌓일 때 '모집중' 뱃지(top:-17px)가 윗카드에 붙지 않게 간격 확보 */
    .hero-cards { row-gap: 40px; }
    .hero-card{
      flex: 1;
    }
    header { padding: 14px 20px; }

    /* 공통 지원 자격: 1열로 (2열이면 단어가 어색하게 쪼개짐) */
    .shared-qual {padding: 20px 15px;}
    .notice-point p{
      font-size:14px;
    }
    .shared-qual-grid { grid-template-columns: 1fr; gap: 8px; }

    /* 파일 선택 기본 문구가 잘리지 않게 살짝 축소 */
    .file-area strong { font-size: 16px; }

    /* 지원 절차: 가로 스크롤 대신 세로 스텝으로 */
    .section-label{
      margin-bottom: 0px;
      font-size: 12px;
    }
    .section-title{
      margin-bottom: 10px;
    }
    .photo-warn{
      margin-top: 20px;
      font-size: 14px;
    }
    .divider{
      margin-bottom: 30px;
    }
    .process-steps { flex-direction: column; gap: 0; overflow: visible; }
    .step {
      width: 100%;
      min-width: 0;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 16px;
      row-gap: 2px;
      align-items: center;
      text-align: left;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .step:last-child { border-bottom: none; }
    .step-circle {grid-row: 1 / 3;grid-column: 1;margin: 0;width: 30px;height: 30px;font-size: 16px;}
    .step h4 {grid-column: 2;align-self: end;margin: 0;font-size: 18px;}
    .step p {grid-column: 2;align-self: start;padding: 0;font-size: 14px;}
    .step::after { display: none; }

    /* 모델 카드: 좁은 폭에서 제목/값이 어색하게 쪼개지지 않게 축소 */
    .model-card-header {padding: 24px 15px 20px;}
    .model-card-body {padding: 0px 15px;}
    .model-card h3 { font-size: 22px; }
    .info-row {gap: 2px;flex-direction: column;padding: 17px 0;}
    .info-label { min-width: auto; font-size: 15px; white-space: nowrap; }
    .info-val { font-size: 15px; }
    .tag { font-size: 13px; }

    /* 모집 유형 선택 카드 */
    .type-option { padding: 14px; }
    .type-option .type-name { font-size: 16px; }

    /* 제출 버튼: 한 줄로 */
    .submit-btn { font-size: 18px; padding: 16px; letter-spacing: 0.02em; }
  }

  /* ── 반응형 표시 유틸 ── */
  /* .pc : 데스크탑(≥601px)에서만 표시 / .mobile : 모바일(≤600px)에서만 표시 */
  .mobile { display: none !important; }
  @media (max-width: 600px) {
    .pc { display: none !important; }
    .mobile { display: revert !important; }
  }
