/* ════════════════════════════════════
   주니어솔로몬 — Mobile Responsive
   ════════════════════════════════════ */

/* ── 전체 너비 제한 해제 ── */
* { box-sizing: border-box; }
img { max-width: 100%; }

/* ── 헤더 ── */
@media (max-width: 900px) {
  header > div { padding: 12px 16px !important; gap: 12px !important; }
  header > div > a:first-child > img { height: 52px !important; }
  header nav { display: none !important; }
  header > div > a:last-child {
    font-size: 12px !important;
    padding: 8px 14px !important;
    white-space: nowrap;
  }
}

/* ── 공통 섹션 패딩 ── */
@media (max-width: 768px) {
  section[style*="padding:100px"] { padding: 56px 0 36px !important; }
  section[style*="padding:90px"]  { padding: 52px 0 !important; }
  section[style*="padding:80px"]  { padding: 48px 0 !important; }
  section[style*="padding:56px"]  { padding: 40px 0 !important; }

  /* 내부 컨테이너 좌우 패딩 */
  div[style*="max-width:1000px"][style*="padding:0 32px"] { padding: 0 16px !important; }
  div[style*="max-width:1200px"][style*="padding:0 32px"] { padding: 0 16px !important; }
  div[style*="max-width:760px"][style*="padding:0 32px"]  { padding: 0 16px !important; }
  div[style*="max-width:640px"][style*="padding:0 32px"]  { padding: 0 16px !important; }
  div[style*="max-width:480px"][style*="padding:0 32px"]  { padding: 0 16px !important; }

  /* 제목 크기 */
  h1[style*="font-size:40px"] { font-size: 26px !important; }
  h2[style*="font-size:32px"] { font-size: 24px !important; }
  h2[style*="font-size:28px"] { font-size: 22px !important; }
  h2[style*="font-size:26px"] { font-size: 20px !important; }
  h2[style*="font-size:24px"] { font-size: 18px !important; }

  /* ── 그리드 → 1열 ── */
  div[style*="grid-template-columns:repeat(3,1fr)"]  { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:repeat(4,1fr)"]  { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:repeat(2,1fr)"]  { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:1fr 1fr"]        { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:2fr 1fr 1fr 1fr"]{ grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns:2fr 1fr 1fr"]    { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:300px 1fr"]      { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns:260px 1fr"]      { grid-template-columns: 1fr !important; }

  /* 2열 교사 그리드 (소포스에듀) */
  div[style*="grid-template-columns:1fr 1fr;gap:32px"] { grid-template-columns: 1fr !important; }

  /* 시설 모자이크 */
  div[style*="grid-template-columns:3fr 2fr"] {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
  }
  div[style*="grid-row:1/3"] { grid-row: auto !important; }
  div[style*="height:420px"] { height: auto !important; }

  /* 원장/선생님 사진 */
  img[style*="aspect-ratio:3/4"] { max-width: 240px !important; margin: 0 auto !important; }
  img[style*="aspect-ratio:4/3"] { max-width: 100% !important; }

  /* 지도 iframe */
  iframe[title*="위치"] { height: 280px !important; }

  /* CTA 버튼 행 */
  div[style*="display:flex;gap:14px;justify-content:center"] {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  div[style*="display:flex;gap:14px;justify-content:center"] > a {
    text-align: center !important;
  }

  /* 홈 히어로 퀵링크 */
  div[style*="grid-template-columns:repeat(4,1fr)"][style*="border-top"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* 신뢰지표 (4열 다크 섹션) */
  div[style*="repeat(4,1fr)"][style*="max-width:1000px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* 커리큘럼 5단계 트랙 */
  div[style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* 커리큘럼 카드 3열 */
  div[style*="grid-template-columns:repeat(3,1fr)"][style*="gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* 교습비 테이블 */
  table { font-size: 13px !important; }
  th, td { padding: 10px 8px !important; }

  /* 학원소개 3열 개요 */
  div[style*="grid-template-columns:repeat(3,1fr)"][style*="border-top:1px solid"] {
    grid-template-columns: 1fr !important;
  }

  /* 교통 2열 그리드 */
  div[style*="grid-template-columns:repeat(2,1fr)"][style*="border-top:1px solid"] {
    grid-template-columns: 1fr !important;
  }

  /* 푸터 */
  footer > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  footer > div[style*="padding:0 32px"] { padding: 0 16px !important; }
  footer img[alt="주니어솔로몬"] { height: 70px !important; }

  /* 스티키 탭 네비 (커리큘럼) */
  div[style*="position:sticky"] { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── 태블릿 중간 (769-1024) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  header > div { padding: 12px 24px !important; }
  header nav { gap: 24px !important; }
  div[style*="max-width:1000px"][style*="padding:0 32px"] { padding: 0 24px !important; }
  div[style*="max-width:1200px"][style*="padding:0 32px"] { padding: 0 24px !important; }
  div[style*="grid-template-columns:2fr 1fr 1fr"] { grid-template-columns: 1fr 1fr !important; }
}
