/* ===== FONT ===== */
@font-face {
  font-family: 'Paperlogy';
  src: url('../font/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../font/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Paperlogy';
  src: url('../font/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/eng/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/eng/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 400;
  color: #fff;
  background: #0a1628;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  user-drag: none;
}

/* ===== HEADER (PC·모바일 공통: 스크롤 시 상단 고정) ===== */
.header {
  background-color: #0A1F44;
  color: #fff;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

/* 로고 영역: PC에서는 좌(korea) 우(hunmin) 공간만, 모바일에서는 전체 너비 */
.header-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .header-logos {
    width: 200px;
    min-width: 200px;
  }
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
}

/* PC: 가로 6개, 세로 2줄 */
.nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem 1.5rem;
  flex: 1;
  justify-content: flex-end;
  align-content: center;
  min-width: 0;
}

/* 모바일 전용 네비: PC에서 숨김 */
.nav-mobile {
  display: none;
}

.nav-item {
  font-family: 'Paperlogy', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-align: center;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* 상담신청(INQUIRY) 흰색↔빨간색 깜빡임 애니메이션 */
@keyframes nav-apply-blink {
  0%, 100% {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  }
  50% {
    color: #e00;
    border-color: #e00;
    background-color: rgba(224, 0, 0, 0.2);
    box-shadow: 0 0 16px rgba(224, 0, 0, 0.6);
  }
}

/* PC·모바일 공통: 상담신청(INQUIRY) - 깜빡이는 강조 */
.nav-item.nav-apply {
  color: #c00;
  border: 2px solid #c00;
  animation: nav-apply-blink 1.8s ease-in-out infinite;
  font-weight: 700;
}

/* 우측 상단: logo.png */
.header-brand-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.header-brand-logo-link {
  display: block;
  line-height: 0;
}

.header-brand-logo-img {
  height: 84px;
  width: auto;
  max-width: min(320px, 40vw);
  object-fit: contain;
  display: block;
}

.nav-item.nav-apply:hover {
  animation: none;
  background-color: rgba(224, 0, 0, 0.35);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}

.mobile-apply-fab {
  display: none;
}

/* ===== HERO (PC: 1920×800, 이미지 안 잘리게) ===== */
.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 12 / 5;
  min-height: 420px;
  max-height: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-single,
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-img,
.hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* 밝기·선명도 보정 (PC 히어로) */
  filter: brightness(1.15) contrast(1.1);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 31, 68, 0.2) 0%, rgba(10, 31, 68, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-content {
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-title-eng {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ===== 모바일 전용: 카테고리와 1-m 이미지 사이 문구 섹션 ===== */
.mobile-tagline {
  display: none;
}

.mobile-tagline-text {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* ===== 모바일 전용 히어로: 슬라이드 없이 1-m~4-m 세로 나열 ===== */
.hero-mobile {
  display: none;
}

.hero-mobile img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* ===== MOBILE: 헤더(로고 좌/우) + 청색 카테고리 3열 그리드 + 이미지 세로 나열 ===== */
@media (max-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0;
  }

  /* 1행: 태극기(로고) 왼쪽 · 상호 오른쪽 수평 정렬 */
  .header-logos {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    padding: 0.75rem 0 0.75rem 1rem;
  }

  .header-brand-logo {
    grid-column: 2;
    grid-row: 1;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-left: 0;
    justify-content: flex-end;
    align-self: center;
  }

  .header-brand-logo-img {
    height: 64px;
    max-width: min(260px, 58vw);
  }

  .nav-pc {
    display: none !important;
  }

  .nav-mobile {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  /* 모바일: 헤더 korea-logo 더 작게 */
  .header-logos .logo:first-child .logo-img {
    height: 32px;
  }

  /* 모바일: 헤더에서 hunmin 로고 숨김 (PC는 유지) */
  .header-logos .logo-right {
    display: none;
  }

  /* PC 네비 숨김, 모바일 네비 표시 */
  .nav-pc {
    display: none !important;
  }

  .nav-mobile {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0.15rem;
    background-color: #0A1F44;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: stretch;
    flex: 1;
    min-width: 0;
  }

  .mobile-apply-fab {
    display: inline-flex;
    position: fixed;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 140;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.7rem 1rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #d60000;
    color: #fff;
    font-family: 'Paperlogy', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    animation: none;
  }

  /* 모바일 카테고리 셀: 흰색 직사각형 테두리 */
  .nav-mobile-cell {
    font-family: 'Paperlogy', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    padding: 0.5rem 0.35rem;
    border: 2px solid #fff;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }

  .nav-mobile-cell:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }

  /* 모바일: 상담신청(INQUIRY) - 흰색↔빨간색 깜빡임 */
  .nav-mobile-cell.nav-apply {
    color: #c00;
    border-color: #c00;
    animation: nav-apply-blink 1.8s ease-in-out infinite;
    font-weight: 700;
  }

  .nav-mobile-cell.nav-apply:hover {
    animation: none;
    background-color: rgba(224, 0, 0, 0.35);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
  }

  /* 로고+텍스트 셀: 아이콘 위, 텍스트 아래 */
  .nav-mobile-with-icon {
    padding: 0.4rem 0.35rem;
  }

  .nav-mobile-icon {
    width: auto;
    height: 32px;
    margin-bottom: 0.25rem;
    flex-shrink: 0;
  }

  /* korea-logo: 모바일에서 더 작게 */
  .nav-mobile-icon-korea {
    height: 24px;
  }

  /* 1행 가운데: hunmin 로고만 표시 (테두리 없음) */
  .nav-mobile-center-logo {
    min-height: 2.75rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
  }

  .nav-mobile-icon-center {
    width: auto;
    height: 62px;
    object-fit: contain;
  }

  .nav-mobile-label {
    line-height: 1.3;
    white-space: normal;
  }

  /* PC용 nav-item (모바일에서 미사용) */
  .nav-item {
    font-size: 0.8rem;
    padding: 0.6rem 0.35rem;
    white-space: normal;
    line-height: 1.35;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    box-sizing: border-box;
  }

  /* 카테고리와 문구 간격 좁히기: 패딩 축소 */
  .mobile-tagline {
    display: block;
    background-color: #0A1F44;
    padding: 0.2rem 1rem 0.6rem;
    text-align: center;
  }

  .mobile-tagline-text {
    font-size: 1.43rem; /* 기존 0.95rem의 1.5배 */
    line-height: 1.5;
  }

  .hero {
    aspect-ratio: 16 / 10;
    min-height: 280px;
    max-height: none;
  }

  .hero .hero-content {
    width: calc(100% - 2rem);
  }

  .hero-title-eng {
    font-size: clamp(1rem, 4.5vw, 1.45rem);
    line-height: 1.55;
  }

  main {
    padding: 0;
    margin: 0;
  }
}

/* 작은 모바일에서도 3열 유지 */
@media (max-width: 480px) {
  .nav-item {
    font-size: 0.8rem;
  }
}

/* ===== FOOTER (헤더와 동일 배경·텍스트 색상, 중앙 정렬) ===== */
.footer {
  background-color: #0A1F44;
  color: #fff;
  padding: 1.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

.footer-inner p {
  font-family: 'Paperlogy', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 0.25rem 0;
  color: #fff;
}

.footer-inner p:last-child {
  margin-bottom: 0;
}

.footer-reg {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .footer-inner {
    min-width: min-content;
  }
  .footer-inner p {
    font-size: 0.6rem;
    white-space: nowrap;
  }
  .footer-reg {
    white-space: nowrap;
  }
}

/* ===== 한국어코스 페이지 (Korean-course.html) ===== */
.course-page {
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.course-section {
  background-color: #0A1F44;
  padding: 2rem;
  border-radius: 8px;
}

.course-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.course-content {
  margin-bottom: 2.5rem;
}

.course-heading {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin: 1.25rem 0 0.5rem;
  text-align: center;
}

.course-content .course-heading:first-child {
  margin-top: 0;
}

.course-list {
  margin: 0.5rem auto 1rem;
  padding: 0;
  list-style-position: inside;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  max-width: 90%;
}

.course-list li {
  margin-bottom: 0.5rem;
}

.course-text {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.8;
  color: #fff;
  margin: 0.35rem 0 0.6rem;
  text-align: center;
}

.course-map-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.course-map-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.course-map-wrap {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  min-height: 200px;
}

.course-map-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

/* 한국 지도 이미지: 랜딩에서 크게, 반응형 */
.korea-map {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.course-map-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .course-page {
    padding: 1rem 1rem 2rem;
  }

  .course-section {
    padding: 1.25rem;
  }

  .course-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .course-heading {
    font-size: 1.1rem;
  }

  .course-list,
  .course-text {
    font-size: 1rem;
  }

  /* 모바일: 지도 이미지 115% 너비, 왼쪽 -7.5% (비율 유지) */
  .course-map-section .course-map-wrap {
    overflow: hidden;
  }

  .korea-map {
    width: 115%;
    max-width: none;
    margin-left: -7.5%;
    margin-right: auto;
  }
}

/* ===== 상담신청 페이지 (inquery.html) ===== */
.inquiry-page {
  padding: 2rem 1.5rem 3rem;
  max-width: 640px;
  margin: 0 auto;
}

.inquiry-section {
  background-color: #0A1F44;
  padding: 2rem;
  border-radius: 8px;
}

.inquiry-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-notice {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 1.5rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.inquiry-label {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.inquiry-input {
  font-family: 'Paperlogy', sans-serif;
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: border-color 0.2s;
}

.inquiry-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.inquiry-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.inquiry-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.inquiry-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}

.inquiry-radio {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #c00;
}

.inquiry-submit-wrap {
  margin-top: 0.5rem;
  text-align: center;
}

.inquiry-submit {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2rem;
  border: 2px solid #c00;
  border-radius: 6px;
  background: transparent;
  color: #c00;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.inquiry-submit:hover {
  background: #c00;
  color: #fff;
}

/* 문의 폼 허니팟(봇 전용, 화면 밖 배치) */
.inquiry-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 문의 완료 모달 */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.inquiry-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.inquiry-modal-box {
  position: relative;
  background: #0A1F44;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  max-width: 360px;
  width: 100%;
  text-align: center;
}
.inquiry-modal-box--error {
  max-width: min(440px, calc(100vw - 2rem));
  border-color: rgba(200, 0, 0, 0.65);
  text-align: left;
}
.inquiry-modal-box--error .inquiry-modal-title {
  color: #ffb4b4;
  text-align: center;
}
.inquiry-modal-box--error .inquiry-modal-text {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}
.inquiry-modal-box--error .inquiry-modal-btn {
  display: block;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.inquiry-modal-title {
  font-family: 'Paperlogy', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.inquiry-modal-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.inquiry-modal-btn {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid #c00;
  border-radius: 6px;
  background: transparent;
  color: #c00;
  cursor: pointer;
}
.inquiry-modal-btn:hover {
  background: #c00;
  color: #fff;
}

@media (max-width: 768px) {
  .inquiry-page {
    padding: 1rem 1rem 2rem;
  }

  .inquiry-section {
    padding: 1.25rem;
  }

  .inquiry-title {
    font-size: 1.45rem;
  }
}

/* ===== 한국정보 페이지 (korea-info.html) ===== */
.info-page {
  padding: 2rem 1.5rem 3rem;
  max-width: 820px;
  margin: 0 auto;
}

.info-section {
  background-color: #0A1F44;
  padding: 2rem;
  border-radius: 8px;
}

.info-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.85rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-intro {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 2rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.info-content {
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-heading {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.6rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 92%;
}

.info-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  margin-bottom: 0.45rem;
  padding-left: 1rem;
  position: relative;
  word-break: normal;
  overflow-wrap: break-word;
}

.info-list li::before {
  content: "*";
  position: absolute;
  left: 0;
}

.info-extra {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-extra-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  word-break: normal;
  overflow-wrap: break-word;
}

.info-num-list {
  list-style-position: inside;
  padding: 0;
  margin: 0 auto;
  max-width: 92%;
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
}

.info-num-list li {
  margin-bottom: 0.4rem;
  word-break: normal;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .info-page {
    padding: 1rem 1rem 2rem;
  }

  .info-section {
    padding: 1.25rem;
  }

  .info-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .info-intro {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .info-heading {
    font-size: 1.05rem;
  }

  .info-list li,
  .info-num-list li {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .info-list,
  .info-num-list {
    max-width: 100%;
  }
}

/* ===== 서울 페이지 (seoul.html) ===== */
.seoul-page {
  padding: 1.5rem 1rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.seoul-title {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}

.seoul-hero {
  display: flex;
  flex-direction: column;
  gap: 0.3cm;
  margin-bottom: 1.5cm;
}

.seoul-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.seoul-unis {
  display: flex;
  flex-direction: column;
  gap: 1.5cm;
}

.seoul-uni {
  text-align: center;
}

.seoul-uni-name {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 2.025rem;
  color: #fff;
  margin: 0 0 0.25rem 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.seoul-uni-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .seoul-page {
    padding: 1rem 0.75rem 2rem;
    overflow-x: hidden;
  }

  .seoul-title {
    font-size: 1.75rem;
  }

  .seoul-uni-name {
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .seoul-uni {
    min-width: 0;
  }
}
