/* ------------------------------
   HEADER SECTION (상단 로고 영역)
------------------------------ */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;   /* ✅ 가로 스크롤만 숨기기 */
  overflow-y: auto;     /* ✅ 세로 스크롤 활성화 */
}
* {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, span{
  margin: 0;
  letter-spacing: -0.5px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
section {
    padding:100px 20px;
    text-align: center;
}
h2 {
    font-size: 2.7rem;
    line-height: 3.3rem;
    padding-bottom: 10px;
}
h3 {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 3rem;
}
h4 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2rem;
}
button:focus {
  outline: none;
}


/*섹션 백그라운*/
.section-bg02 {
    background-color: #EEF0FF;
}
.section-grd01 {
    background: linear-gradient(to bottom, #EEF0FF 30%, #fff);
}

/*텍스트 색상**/
.text-white {
  color:#f1f1f1;
}
.text-highlight01 {
    color:#0020EF;
}
#header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  padding: 8px 0; /* 위아래 여백 축소 */
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 14px;
}

.logo {
  display: block;
  object-fit: contain;
}

.logo-miracle {
  height: 28px; /* 메인 로고 크기 */
}

.logo-employment {
  height: 26px; /* 오른쪽 로고 살짝 작게 */
}

.divider {
  color: #777;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  top: 1px; /* 중앙 시각보정 */
}
.text-container {
    padding:20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.highlight {
  color: #0020EF;
}
.highlight01 {
  color: #29E5FB;
}


/* 🧩 반응형 */
@media (max-width: 768px) {
  #header {
    padding: 10px 0;
  }

  .header-container {
    gap: 10px;
  }

  .logo-miracle {
    height: 24px;
  }

  .logo-employment {
    height: 22px;
  }

  .divider {
    font-size: 1rem;
  }
}
