@charset "utf-8";
/* ============================================================
   쉬운 화면 (easy.php) — 시안 conceptE 기반
   · 두꺼운 잉크 외곽선(2.5~3px) + 하드 오프셋 그림자 + 큰 라운드 = 마스코트 미감
   · 발달장애인 대상이므로 시안보다 글자·버튼·간격을 더 크게(최소 터치 60px)
   ============================================================ */
.ez-wrap {
    --ez-canvas: #F3F0E8;
    --ez-ink: #1B2733;
    --ez-soft: #5C6776;
    --ez-blue: #1B4F8C;
    --ez-blue-soft: #DCE8F6;
    --ez-orange: #E85D11;
    --ez-orange-soft: #FCE3D4;
    --ez-mint: #247F5C;
    --ez-mint-soft: #D9EFE5;
    --ez-cream: #FBEFD6;
    --ez-shadow: 6px 6px 0 var(--ez-ink);

    background: var(--ez-canvas);
    color: var(--ez-ink);
    padding: 3.2rem 0 6rem;
    font-size: 1.9rem;          /* 기본 글자 크게 */
    line-height: 1.65;
    word-break: keep-all;        /* 단어 중간 줄바꿈 방지 — 읽기 쉬움 */
}
.ez-inner { max-width: 96rem; margin: 0 auto; padding: 0 2rem; }

/* ── 상단 바 ── */
.ez-topbar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.ez-badge {
    background: var(--ez-ink); color: #fff; font-weight: 800; font-size: 1.6rem;
    padding: .6rem 1.4rem; border-radius: 999px;
}
.ez-tts, .ez-exit {
    display: inline-flex; align-items: center; gap: .6rem;
    min-height: 5rem; padding: .8rem 1.8rem;
    background: #fff; color: var(--ez-ink); font-size: 1.7rem; font-weight: 800;
    border: 2.5px solid var(--ez-ink); border-radius: 999px;
    text-decoration: none; cursor: pointer; box-shadow: 3px 3px 0 var(--ez-ink);
}
.ez-exit { margin-left: auto; }
.ez-tts[aria-pressed="true"] { background: var(--ez-ink); color: #fff; }
.ez-tts:hover, .ez-exit:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ez-ink); }

/* ── 뒤로가기 ── */
.ez-back {
    display: inline-flex; align-items: center; gap: .6rem;
    min-height: 5.6rem; padding: 1rem 2rem; margin-bottom: 2rem;
    background: #fff; color: var(--ez-ink); font-size: 1.8rem; font-weight: 800;
    border: 2.5px solid var(--ez-ink); border-radius: 999px;
    text-decoration: none; box-shadow: 4px 4px 0 var(--ez-ink);
}
.ez-back:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ez-ink); }

/* ── 제목/안내 ── */
.ez-h1 {
    font-size: 3.4rem; font-weight: 900; letter-spacing: -.05rem;
    margin: 0 0 1.2rem; color: var(--ez-ink); line-height: 1.3;
}
.ez-lead { font-size: 2rem; font-weight: 600; color: var(--ez-ink); margin: 0 0 2.8rem; }
.ez-lead-big { font-size: 2.2rem; }
.ez-note { font-size: 1.7rem; color: var(--ez-soft); font-weight: 600; margin-top: 2rem; }
.ez-empty {
    background: #fff; border: 2.5px dashed var(--ez-ink); border-radius: 2rem;
    padding: 4rem 2rem; text-align: center; font-size: 2rem; font-weight: 700;
}

/* ── 벤토 타일 그리드 ── */
.ez-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.ez-tile {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
    gap: .4rem; min-height: 20rem; padding: 2.4rem;
    background: #fff; color: var(--ez-ink); text-decoration: none;
    border: 3px solid var(--ez-ink); border-radius: 2.4rem;
    box-shadow: var(--ez-shadow); position: relative; overflow: hidden;
    transition: transform .12s, box-shadow .12s;
}
.ez-tile:hover, .ez-tile:focus-visible { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--ez-ink); }
.ez-tile-img {
    position: absolute; right: -1rem; bottom: -1rem; width: 12rem; height: 12rem;
    object-fit: contain; pointer-events: none;
}
.ez-tile-emoji { position: static; width: auto; height: auto; font-size: 5.6rem; line-height: 1; margin-bottom: .8rem; }
.ez-tile-label { position: relative; font-size: 2.4rem; font-weight: 900; line-height: 1.25; max-width: 62%; }
.ez-tile-desc { position: relative; font-size: 1.7rem; font-weight: 700; color: var(--ez-soft); max-width: 62%; }
.ez-blue   { background: var(--ez-blue-soft); }
.ez-orange { background: var(--ez-orange); color: #fff; }
.ez-orange .ez-tile-desc { color: rgba(255,255,255,.95); }
.ez-mint   { background: var(--ez-mint-soft); }
.ez-cream  { background: var(--ez-cream); }
.ez-white  { background: #fff; }
.ez-ink    { background: var(--ez-ink); color: #fff; }
.ez-ink .ez-tile-desc { color: rgba(255,255,255,.95); }
.ez-tile-tel { align-items: flex-start; justify-content: center; }
.ez-tel-num { font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: .05rem; max-width: 100%; }

/* ── 일자리 카드 ── */
.ez-jobs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2rem; }
.ez-job {
    background: #fff; border: 3px solid var(--ez-ink); border-radius: 2.4rem;
    padding: 2.4rem; box-shadow: var(--ez-shadow);
}
.ez-job-title { font-size: 2.4rem; font-weight: 900; margin: 0 0 1.6rem; line-height: 1.3; color: var(--ez-ink); }
.ez-job-facts { margin: 0 0 2rem; display: flex; flex-direction: column; gap: 1rem; }
.ez-fact { display: flex; flex-wrap: wrap; align-items: baseline; gap: .8rem 1.2rem; }
.ez-fact dt {
    font-size: 1.7rem; font-weight: 800; color: var(--ez-ink);
    background: var(--ez-canvas); border: 2px solid var(--ez-ink); border-radius: 999px;
    padding: .3rem 1.2rem; flex: 0 0 auto;
}
.ez-fact dd { margin: 0; font-size: 1.9rem; font-weight: 700; }
.ez-job-btns { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ── 버튼 ── */
.ez-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
    min-height: 6rem; padding: 1.2rem 2.4rem;
    font-size: 2rem; font-weight: 900; text-decoration: none;
    border: 3px solid var(--ez-ink); border-radius: 999px;
    box-shadow: 4px 4px 0 var(--ez-ink); cursor: pointer;
    transition: transform .12s, box-shadow .12s;
}
.ez-btn:hover, .ez-btn:focus-visible { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ez-ink); }
.ez-btn-call { background: var(--ez-orange); color: #fff; }
.ez-btn-go   { background: var(--ez-blue); color: #fff; }
.ez-btn-more { background: #fff; color: var(--ez-ink); }
.ez-btn-big  { min-height: 7.2rem; font-size: 2.2rem; padding: 1.4rem 3rem; }
.ez-cta-row { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.2rem; }
.ez-cta-col { display: flex; flex-direction: column; gap: 1.6rem; }
.ez-cta-col .ez-btn { width: 100%; }

/* ── 단계 안내 ── */
.ez-steps { list-style: none; margin: 0 0 3rem; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.ez-step {
    display: flex; align-items: center; gap: 1.6rem;
    background: #fff; border: 3px solid var(--ez-ink); border-radius: 2rem;
    padding: 1.8rem 2rem; box-shadow: 4px 4px 0 var(--ez-ink);
}
.ez-step-no {
    flex: 0 0 auto; width: 5rem; height: 5rem; border-radius: 999px;
    background: var(--ez-blue); color: #fff; border: 2.5px solid var(--ez-ink);
    display: grid; place-items: center; font-size: 2.2rem; font-weight: 900;
}
.ez-step-tx { font-size: 2rem; font-weight: 700; }

/* ── 소개 ── */
.ez-about { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.ez-about-img { width: 20rem; height: 20rem; object-fit: contain; flex: 0 0 auto; }
.ez-about .ez-lead { flex: 1 1 28rem; margin: 0; }

/* ── 정보 카드 ── */
.ez-info-card {
    background: #fff; border: 3px solid var(--ez-ink); border-radius: 2.4rem;
    padding: 2.4rem; box-shadow: var(--ez-shadow); margin-bottom: 2.4rem;
}
.ez-info-row { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; padding: 1.2rem 0; border-bottom: 2px solid rgba(27,39,51,.12); }
.ez-info-row:last-child { border-bottom: 0; }
.ez-info-k { font-size: 1.8rem; font-weight: 800; flex: 0 0 14rem; }
.ez-info-v { font-size: 1.9rem; font-weight: 700; flex: 1 1 20rem; }

/* ── 초점 표시(접근성) ── */
.ez-wrap a:focus-visible, .ez-wrap button:focus-visible {
    outline: 4px solid var(--ez-orange); outline-offset: 3px;
}

/* ── 모바일 ── */
@media (max-width: 767px) {
    .ez-wrap { font-size: 1.8rem; padding: 2.4rem 0 4.8rem; }
    .ez-inner { padding: 0 1.6rem; }
    .ez-h1 { font-size: 2.8rem; }
    .ez-lead { font-size: 1.9rem; }
    .ez-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .ez-tile { min-height: 16rem; padding: 2rem; }
    .ez-tile-img { width: 9.6rem; height: 9.6rem; }
    .ez-tile-label { font-size: 2.1rem; max-width: 60%; }
    .ez-exit { margin-left: 0; }
    .ez-btn { width: 100%; }
    .ez-about-img { width: 14rem; height: 14rem; margin: 0 auto; }
}

/* ── 고대비 모드 ── */
@media (prefers-contrast: more) {
    .ez-tile-desc, .ez-note { color: var(--ez-ink); }
}

/* 일자리 종류 이름표 — 일자리 / 일경험 / 우리 동네 */
.ez-kind {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .4rem 1.4rem;
    border: 3px solid var(--ez-ink);
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
}
.ez-kind--center   { background: var(--ez-blue-soft); color: var(--ez-ink); }
.ez-kind--intern   { background: var(--ez-orange); color: #fff; }
.ez-kind--district { background: var(--ez-mint-soft); color: var(--ez-ink); }
