@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
  --hm-primary: #022984;
  --hm-primary-hover: #104ede;
  --hm-accent: #0344dc;
  --hm-accent-main: #00ffff;
  --hm-accent-sub: #e6f0ff;  
  --hm-text-main: #1b1b1b;
  --hm-text-sub: #535353;
  --hm-text-muted: #94a3b8;
  --hm-text-wh: #ffffff;
  --primary-blue: #0052ff;
  --dark-blue: #0032b3;
  --bg-gray: #f3f3f3;
  --hm-border: rgba(226, 232, 240, 0.8);
  --hm-bg-glass: rgba(255, 255, 255, 0.88);
  --hm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --hm-shadow-lg: 0 16px 32px rgba(13, 44, 84, 0.12);
  --hm-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --hm-max-width: 1300px;
  --hm-font-base: 'Pretendard', sans-serif;
  --hm-letter-spacing-tight: -0.031rem;
}

/* 전체 기본 설정 */
body, div, dl, dt, dd, a, input, textarea, select, button {
  letter-spacing: var(--hm-letter-spacing-tight);
  box-sizing:border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  max-width: 100%;
  font-family: var(--hm-font-base);
  margin:0;
  padding:0;
  overflow-x: hidden;
}
a { text-decoration:none; color: inherit;}
a:focus,
ul, ol {list-style-type:none; }

.hm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--hm-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hm-border);
  box-shadow: var(--hm-shadow-sm);
}

/* Topbar & Brand */
.hm-topbar {
  background: #104ede;
  border-bottom: 1px solid var(--hm-border);
}

.hm-topbar__inner {
  max-width: var(--hm-max-width);
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
}

.hm-topbar__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hm-topbar__item {
  display: flex;
  align-items: center;
  gap: 0;
}

.hm-topbar__link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--hm-text-wh, #ffffff);
  text-decoration: none;
  transition: var(--hm-transition);
  display: inline-flex;
  align-items: center;
}

.hm-topbar__link:hover {
  color: var(--hm-accent-main);
}

.hm-topbar__icon {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 18px auto;       
  padding-left: 22px;               
  min-height: 20px;                 
}

.hm-topbar__icon--member {
  background-image: url('/images/index/icon_member.png');
}

.hm-topbar__icon--tel {
  background-image: url('/images/index/icon_tel.png');
}

.hm-topbar__icon--eng {
  background-image: url('/images/index/icon_eng.png');
}

.hm-topbar__divider {
  padding-right: 10px;
  margin-right: 10px;
}
.hm-topbar__divider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.35);
}

.hm-header__brand {
  max-width: var(--hm-max-width);
  margin: 0 auto;
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-top: 1px solid var(--hm-border); 
}

.hm-header__logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 0 0 20px 0;
  z-index: 10;
}

.hm-header__logo h1, 
.hm-header__logo a { 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.hm-header__logo img { 
  height: 63px; 
  width: auto; 
  display: block;
}

.hm-header__logo-mobile { display: none; }

.hm-mobile-none { display: inline; }

/* Desktop Navigation */

.hm-gnb { 
  width: 100%;
  border-top: 1px solid var(--hm-border);
  background: #ffffff;
  position: relative;
}

.hm-gnb__wrapper { 
  max-width: var(--hm-max-width); 
  margin: 0 auto; 
  padding: 0 10px; 
}

.hm-gnb__container { 
  display: flex; 
  align-items: center;
  position: relative; 
}

.hm-nav-primary { 
  flex: 1;
}

.hm-nav-primary__list { 
  display: grid; 
  grid-template-columns: repeat(8, 1fr); 
  text-align: center; 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}
.hm-nav-primary__link {
  display: block;
  padding: 20px 0;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--hm-text-main);
  text-decoration: none;
  position: relative;
  transition: var(--hm-transition);
}
.hm-nav-primary__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--hm-accent);
  transition: var(--hm-transition);
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}
.hm-nav-primary__item:hover .hm-nav-primary__link { color: var(--hm-accent); }
.hm-nav-primary__item:hover .hm-nav-primary__link::after { width: 80%; }

.hm-nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: var(--hm-shadow-lg);
  border: 1px solid var(--hm-border);
  border-radius: 0 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(8, 1fr); 
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--hm-transition);
  z-index: 1000;
}
.hm-gnb__container:hover .hm-nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.hm-nav-sub__column { padding: 0 4px; text-align: center; min-width: 0; }
.hm-nav-sub__list { list-style: none; padding: 0; margin: 0; }
.hm-nav-sub__list li a {
  display: block;
  padding: 10px 6px;
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  white-space: nowrap;
  color: var(--hm-text-sub);
  text-decoration: none;  
  transition: var(--hm-transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hm-nav-sub__list li a:hover { background: var(--hm-accent-sub); color: var(--hm-accent); border-bottom-color: transparent; border-radius: 6px; }
.hm-link--closed { color: var(--hm-text-muted) !important; text-decoration: line-through !important; opacity: 0.6; }

.hm-drawer, .hm-social-share { display: none; }

/* 플로팅 버튼 */
.hm-gnb__floating-fixed {
  position: absolute;
  right: 0.5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.hm-gnb-floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--hm-primary, #022984);
  background-image: url('/images/index/icon_global.png');
  background-repeat: no-repeat;
  background-position: 16px center;
  background-size: 18px 18px;  
  color: var(--hm-text-wh, #ffffff);
  padding: 6px 14px 6px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--hm-transition, all 0.25s cubic-bezier(0.4, 0, 0.2, 1));
  box-shadow: var(--hm-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
  white-space: nowrap;
}

.hm-gnb-floating-btn:hover {
  background-color: var(--hm-primary-hover, #104ede);
  transform: translateY(-1px);
}

.hm-gnb-floating-btn__text {
  margin-right: 12px;
}

.hm-gnb-floating-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  transition: var(--hm-transition);
}

.hm-gnb-floating-btn__icon svg {
  stroke: #022984;
  transition: var(--hm-transition);
}

.hm-gnb-floating-btn:hover .hm-gnb-floating-btn__icon {
  background-color: rgba(255, 255, 255, 0.25);
}

.hm-gnb-floating-btn:hover .hm-gnb-floating-btn__icon svg {
  stroke: #ffffff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hm-hero {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
  background-color: transparent;
}

.hm-hero__wrapper {
  width: 100%;
  max-width: 1500px !important;
  margin: 0 auto;
  padding: 0 20px;
}

.hm-hero-slider {
  width: 100%;
  padding-bottom: 45px !important;
  overflow: visible !important;
}

.hm-hero-slider .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.92);
  overflow: hidden;
  position: relative;
  border-radius: 0;
  background-color: #0b1120;
}

.hm-hero-slider .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 0;
}

.hm-hero-slider .swiper-slide-active {
  transform: scale(1);
  box-shadow: var(--hm-shadow-lg);
  background-color: transparent;
}

.hm-hero-slider .swiper-slide-active::after {
  opacity: 0;
}

.hm-hero__link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hm-hero__img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 1000;
  max-height: 1000px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

.hm-hero-slider .swiper-button-next,
.hm-hero-slider .swiper-button-prev {
  color: var(--hm-text-why, #ffffff);
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--hm-shadow-sm);
  transition: var(--hm-transition);
  z-index: 30;
  top: 48%;
}

.hm-hero-slider .swiper-button-prev {
  left: 5px;
}

.hm-hero-slider .swiper-button-next {
  right: 5px;
}

.hm-hero-slider .swiper-button-next::after,
.hm-hero-slider .swiper-button-prev::after {
  font-size: 30px;
}

.hm-hero-slider .swiper-button-next:hover,
.hm-hero-slider .swiper-button-prev:hover {
  background-color: #ffffff;
  color: var(--hm-accent, #0066ff);
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.hm-hero-slider .swiper-pagination-bullet {
  background: var(--hm-text-muted);
  opacity: 0.5;
  width: 8px;
  height: 8px;
  transition: var(--hm-transition);
}

.hm-hero-slider .swiper-pagination-bullet-active {
  background: var(--hm-accent, #0066ff);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* ==========================================================================
   EB-5 추천 프로젝트
   ========================================================================== */
.hm-section-title-area {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
  box-sizing: border-box;
}

.hm-section-inner {
  max-width: var(--hm-max-width, 1300px);
  margin: 0 auto;
  text-align: center;
}

.hm-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hm-text-main, #1b1b1b);
  letter-spacing: -1.5px;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.hm-section-title .hm-highlight {
  color: var(--hm-accent, #0344dc);
}

.hm-section-desc {
  font-size: 1.125rem;
  color: var(--hm-text-sub, #535353);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 32px 0;
  letter-spacing: -1px;
}

.hm-btn {
  font-family: var(--hm-font-title);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 35px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--hm-transition, all 0.25s ease);
  box-shadow: var(--hm-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.04));
}

.hm-btn--primary {
  background-color: var(--hm-accent, #0066ff);
  color: #ffffff;
}

.hm-btn--primary:hover {
  background-color: var(--hm-primary-hover, #104ede);
  transform: translateY(-2px);
  box-shadow: var(--hm-shadow-lg, 0 16px 32px rgba(13, 44, 84, 0.12));
}


.eb5-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  align-items: stretch;
  font-family: 'GmarketSansMedium';
}

a.main-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 700px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.main-card .card-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.main-card .card-thumb img:not(.badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.95) 0%, rgba(0, 50, 179, 0.95) 100%);
  color: #ffffff;
  padding: 32px 28px;
  box-sizing: border-box;
  text-align: left;
  z-index: 100;
}

.main-card .title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0px;
}

.main-card .subtitle {
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 16px;
}

.main-card .desc {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

.sub-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  max-height: 700px;
}

a.sub-card {
  display: flex;
  background-color: var(--bg-gray, #f3f3f3);
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-card .card-thumb {
  position: relative;
  width: 48%;
  height: 100%;
  flex-shrink: 0;
  overflow: visible;
}

.sub-card .card-thumb img:not(.badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-card .card-content {
  padding: 24px 20px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.sub-card .title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-black, #111111);
  line-height: 1.3;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.sub-card .desc {
  font-size: 1rem;
  color: var(--text-gray, #666666);
  line-height: 1.2;
}

.eb5-grid .badge,
.eb5-grid img.badge {
  position: absolute !important;
  z-index: 200;
  pointer-events: none;
  display: block !important;
  object-fit: contain !important;
}

.eb5-grid .badge-gold,
.eb5-grid img.badge-gold {
  width: 140px !important;
  height: auto !important;
  max-width: 140px !important;
  left: 20px;
  bottom: 190px;
}

.eb5-grid .badge-small,
.eb5-grid img.badge-small {
  width: 60px !important;
  height: auto !important;
  max-width: 60px !important;
  right: -15px;
  bottom: -13px;
}

a.main-card:hover,
a.sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   추천 프로젝트
   ========================================================================== */
.hm-country-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 80px;
  box-sizing: border-box;
}

.hm-country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  width: 100%;
  padding:30px 0;
}

.country-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  position: relative;
  padding: 30px 0 60px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 5px;
}

.card-title {
  font-family: 'GmarketSansMedium';
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 13px;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #0344dc;
  border-radius: 2px;
}

.feature-list {
  list-style: none;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing:-1px;
  word-break: keep-all;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%230344dc'/%3E%3Cpath d='M6.5 12.5L10 16L17.5 8.5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-more {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  background-color: #0344dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-more::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 11V5h2v6h6v2h-6v6h-2v-6H5v-2h6z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-more:hover {
  background-color: #022cb3;
  transform: scale(1.08);
}

/* ==========================================================================
   행사일정
   ========================================================================== */
.hm-calendar-section {
  width: 100%;
  padding: 80px 0;
  background-image: url('/images/index/bg_calendar.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hm-calendar-container {
  width: 100%;
  max-width: 1300px;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 40px 50px;
  box-sizing: border-box;
}

.hm-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
}

.hm-cal-title-wrap {
  display: flex;
  align-items: center;
  gap: 25px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hm-cal-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hm-cal-title-wrap h3 {
  font-family: 'GmarketSansMedium';
  font-size: 1.5rem;
  color: #111827;
  margin: 0;
  white-space: nowrap;
}


.hm-cal-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 8px;
}

.hm-cal-btn:hover img {
  opacity: 0.6;
}

.hm-cal-btn img {
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.hm-cal-action-area {
  margin-left: auto;
  z-index: 2;
}

.hm-cal-reserve-btn {
  font-family: 'GmarketSansMedium';
  background-color: #111827;
  color: #ffffff;
  padding: 8px 30px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s;
}

.hm-cal-reserve-btn:hover {
  background-color: var(--hm-accent, #0066ff);
}

.hm-cal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.hm-cal-table th {
  padding-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
  text-align: center;
}

.hm-cal-table th.sun { color: #dc2626; }
.hm-cal-table th.sat { color: #2563eb; }

.hm-cal-table td {
  height: 75px;
  vertical-align: top;
  padding: 8px;
  border-top: 1px solid #f3f4f6;
  box-sizing: border-box;
}

.hm-day-cell {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.hm-day-num {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.hm-sun .hm-day-num { color: #dc2626; }
.hm-sat .hm-day-num { color: #2563eb; }
.hm-other-month { opacity: 0.35; }

.hm-day-num.today {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #32b16c;
  color: #ffffff !important;
  border-radius: 50%;
  font-weight: 600;
}

.hm-day-num.has-event-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #dc2626;
  color: #ffffff !important;
  border-radius: 50%;
  font-weight: 600;
}

.hm-event-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #dc2626 !important;
  line-height: 1.25;
  margin-top: 2px;
  white-space: normal !important;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hm-day-num.has-event-num-b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #2563eb;
  color: #ffffff !important;
  border-radius: 50%;
  font-weight: 600;
}

.hm-event-text-b {
  font-size: 0.78rem;
  font-weight: 600;
  color: #2563eb !important;
  line-height: 1.25;
  margin-top: 2px;
  white-space: normal !important;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   게시판
   ========================================================================== */
.hm-board-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
  box-sizing:border-box;
}

.hm-board-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hm-board-item {
  display: flex;
  flex-direction: column;
}

.hm-board-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.hm-board-header img { width: 48px; height: 48px; }

.hm-board-header h3 {
  font-family: var(--hm-font-title, 'GmarketSans'), sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hm-board-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.hm-board-list li {
  font-size: 1rem;
  color: #4b5563;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 12px;
}

.hm-board-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background: #cbd5e1;
  border-radius: 50%;
}

.hm-more-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  gap: 6px;
}

.hm-more-btn .icon_more {
  display: inline-flex;
  align-items: center;
}

.hm-more-btn .icon_more img {
  width: 5px;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   business
   ========================================================================== */
.hm-business-section {
  width: 100%;
  background-color: #f6f9fb;
  padding: 80px 0;
}

.hm-business-grid {
  max-width: 1300px;
  margin:0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.hm-business-card {
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hm-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.hm-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hm-flag {
  width: 32px;
  height: auto;
  object-fit: contain;
}

.hm-card-top h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hm-card-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 20px 0;
}

.hm-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  border-top: 1px solid #f3f4f6;
}

.hm-card-list li {
  font-size: 0.85rem;
  color: #4b5563;
  padding: 9px 0;
  border-bottom: 1px solid #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hm-card-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #004098;
  text-decoration: none;
  margin-top: 24px;
}

.hm-rolling-banner-section {
  width: 100%;
  max-width: 1300px;
  margin:80px auto 0;
  box-sizing:border-box;
}


.hm-banner-swiper {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.hm-banner-swiper .swiper-slide,
.hm-banner-swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}

.hm-banner-img {
  width: 100%;
}

.hm-banner-pc { display: block; }
.hm-banner-mo { display: none; }

.hm-banner-swiper .swiper-button-next,
.hm-banner-swiper .swiper-button-prev {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hm-banner-swiper .swiper-button-next::after,
.hm-banner-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.hm-banner-swiper .swiper-button-next:hover,
.hm-banner-swiper .swiper-button-prev:hover {
  background-color: rgba(8, 51, 153, 0.8);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hm-banner-swiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}

.hm-banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #2563eb;
}

/* ==========================================================================
   about
   ========================================================================== */
.hm-about-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 20px;
  box-sizing:border-box;
}

.hm-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hm-about-card {
  background: #ffffff;
  border: 1px solid #004098;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 64, 152, 0.04);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, background-color;
}

.hm-about-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.hm-about-icon img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.hm-about-card h3 {
  font-family: var(--hm-font-title);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing:-1.5px;
  color: #083399;
  margin: 0 0 16px 0;
}

.hm-about-desc {
  font-family: var(--hm-font-title);
  font-size: 1.25rem;
  color: var(--hm-text-sub, #535353);
  line-height: 1.2;
  font-weight:500;
  margin: 0;
}

.hm-about-card:hover {
  background-color: #083399;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(8, 51, 153, 0.2);
}

.hm-about-card:hover h3,
.hm-about-card:hover .hm-about-desc {
  color: #ffffff !important;
}

.hm-about-card:hover .hm-about-icon img {
  filter: brightness(0) invert(1); 
}

/* blog */
.hm-blog-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
  box-sizing:border-box;
}

.hm-section-title .hm-highlight-blog {
  color: #00a987;
}

.hm-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hm-blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hm-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.hm-blog-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.hm-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hm-blog-card:hover .hm-blog-thumb img {
  transform: scale(1.05);
}

.hm-blog-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hm-blog-title {
  font-family: 'GmarketSansMedium';
  font-size: 1.15rem;
  color: #1f2937;
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.hm-blog-card:hover .hm-blog-title {
  color: var(--hm-primary-hover, #104ede);
}

.hm-blog-text {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 글로벌 인사이트 */
.hm-insights-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
}

.hm-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.hm-insights-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ecf2fa;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hm-insights-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 64, 152, 0.08);
  border-color: #cbd5e1;
}


.hm-insights-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #f1f5f9;
}

.hm-insights-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hm-insights-card:hover .hm-insights-thumb img {
  transform: scale(1.05);
}

.hm-insights-time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: -0.02em;
}

.hm-insights-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.hm-insights-content > h3 { font-weight:300;}
.hm-insights-title {
  font-family: 'GmarketSansMedium';
  font-size: 1.15rem;
  color: #1f2937;
  line-height: 1.45;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.hm-insights-card:hover .hm-insights-title {
  color: var(--hm-primary-hover, #104ede);
}

.hm-insights-info {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  color: #6b7280;
}

.hm-insights-bar {
  margin: 0 10px;
  color: #d1d5db;
}

.hm-insights-info span[class*="hm-icon-"] {
  display: inline-flex;
  align-items: center;
  gap: 5px; 
}

.hm-icon-play::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolygon points='10 8 16 12 10 16 10 8'%3E%3C/polygon%3E%3C/svg%3E");
}

.hm-icon-calendar::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
}

/* 초청이민 */
.hm-info-section {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #ebf3ff;
  border-radius: 16px;
  padding: 24px 0px 24px 50px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 80px;
  box-sizing: border-box;  
}

.vertical-line {
  width: 5px;
  height: 75px;
  background-color: #0046ff;
  border-radius: 4px;
  flex-shrink: 0;
}

.icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap img {
  width: 64px; 
  height: auto;
  display: block;
}

.info-text {
  margin: 0;
  font-family: 'GmarketSansMedium';
  font-size: 1.5rem;
  line-height: 1.5;
  color: #111111;
  font-weight: 500;
  word-break: keep-all;
}

.highlight {
  color: #0046ff;
  font-weight: 700;
}


/* ==========================================================================
   consultant
   ========================================================================== */
.hm-consultant-section {
  width: 100%;
  padding:80px 0;
  background-color: #f6f8fc;  
}

.hm-consultant-container {
  position: relative;
  max-width: 1300px;
  margin:0 auto;
  box-sizing: border-box;
}

.hm-consultant-swiper {
  padding: 0 16px !important;
  box-sizing: border-box;
  overflow: hidden;
}

.hm-consultant-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  will-change: transform;
  height: 100%;
}

.hm-consultant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 64, 152, 0.1);
  border-color: #022984;
}
.hm-consultant-swiper .swiper-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.hm-consultant-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #e2e8f0;
}

.hm-consultant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hm-consultant-card:hover .hm-consultant-thumb img {
  transform: scale(1.04);
}

.hm-consultant-content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  justify-content: space-between;
}

.hm-consultant-role {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 6px;
  font-weight: 500;
}

.hm-consultant-name {
  font-family: 'GmarketSansMedium';
  font-size: 1.1rem;
  color: #1e293b;
  margin: 0 0 14px 0;
  transition: color 0.2s ease;
}


.hm-consultant-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hm-consultant-flags img {
  width: 32px;
  height: auto;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hm-consultant-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  width: 100%;
}

.hm-consultant-controls .swiper-button-prev,
.hm-consultant-controls .swiper-button-next {
  position: static !important;
  width: 80px;
  height: 30px;
  background-color: #ffffff;
  color: #022984;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 !important;
}

.hm-consultant-controls .swiper-button-prev:hover,
.hm-consultant-controls .swiper-button-next:hover {
  background-color: #022984;
  color: #ffffff;
  border-color: #022984;
}

.hm-consultant-controls .swiper-button-prev::after,
.hm-consultant-controls .swiper-button-next::after {
  font-size: 0.8125rem;
  font-weight: bold;
}

/* ==========================================================================
   news&faq
   ========================================================================== */
.hm-news-faq-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
  box-sizing:border-box;
}

.hm-news-faq-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.hm-news-box,
.hm-faq-box {
  display: flex;
  flex-direction: column;
}

.hm-box-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hm-box-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hm-box-icon img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.hm-news-faq-section .hm-section-title {
  font-family: 'GmarketSansMedium';
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
}

.hm-news-faq-section .hm-section-desc {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

.hm-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hm-news-item,
.hm-faq-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.hm-news-item {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.hm-news-item:hover,
.hm-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 64, 152, 0.08);
  border-color: #cbd5e1;
}

.hm-news-press {
  width: 100px;
  flex-shrink: 0;
}

.hm-news-press img {
  max-height: 24px;
  width: auto;
  object-fit: contain;
}

.hm-news-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  margin-left: 20px;
  overflow: hidden;
}

.hm-news-date {
  font-size: 0.9rem;
  color: #9ca3af;
  flex-shrink: 0;
  font-weight: 500;
}

.hm-news-text {
  font-size: 0.98rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hm-news-item:hover .hm-news-text {
  color: #022984;
}

.hm-faq-item {
  cursor: pointer;
  overflow: hidden;
}

.hm-faq-question-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding:2px 0;
}

.hm-faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.hm-faq-q {
  font-family: 'GmarketSansMedium';
  font-size: 1.15rem;
  color: #022984;
  flex-shrink: 0;
}

.hm-faq-text {
  font-size: 0.98rem;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hm-faq-toggle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #9ca3af;
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hm-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.hm-faq-answer p {
  font-size: 0.93rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  border-top: 1px dashed #e2e8f0;
  padding-top: 14px;
}

.hm-faq-item.active {
  border-color: #022984;
}

.hm-faq-item.active .hm-faq-toggle {
  transform: rotate(45deg);
  color: #022984;
}

.hm-faq-item.active .hm-faq-answer {
  max-height: 150px;
  opacity: 1;
  padding-top: 14px;
}

/* ==========================================================================
   contact
   ========================================================================== */
.hm-contact-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

.hm-contact-info-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #374151;
  font-weight: 500;
  flex-wrap: wrap;  
}

.hm-contact-tel {
  font-weight: 700;
  color:#000;
}

.hm-map-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: 60px;
}
.maptext { width:260px; font-size: 0.8125rem; line-height:1.4; padding:10px;}

/* ==========================================================================
   무료상담
   ========================================================================== */
.hm-consult-form-section {
  width: 100%;
  max-width: 1300px;
  margin:0 auto;
  padding: 80px 0;
  box-sizing: border-box;
}

.hm-consult-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.hm-form-group {
  width: 100%;
  box-sizing: border-box;
}

.hm-input-field {
  width: 100%;
  height: 54px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 0.98rem;
  color: #1f2937;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.hm-input-field::placeholder {
  color: #9ca3af;
}

.hm-input-field:focus {
  outline: none;
  border-color: #022984;
  box-shadow: 0 0 0 3px rgba(2, 41, 132, 0.1);
}

.hm-privacy-box-wrap {
  grid-column: 1 / 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.hm-privacy-info-box {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  height: 200px;
  overflow-y: auto;
  box-sizing: border-box;
}

.hm-privacy-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}

.hm-privacy-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.hm-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.hm-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #022984;
  cursor: pointer;
}

.hm-checkbox-text {
  font-size: 0.93rem;
  color: #374151;
  font-weight: 500;
}

.hm-form-action-wrap {
  grid-column: 2 / 4;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.hm-textarea-group {
  width: 100%;
  box-sizing: border-box;
}

.hm-textarea-field {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.98rem;
  color: #1f2937;
  box-sizing: border-box;
  resize: none;
  transition: all 0.3s ease;
}

.hm-textarea-field::placeholder {
  color: #9ca3af;
}

.hm-textarea-field:focus {
  outline: none;
  border-color: #022984;
  box-shadow: 0 0 0 3px rgba(2, 41, 132, 0.1);
}

.hm-submit-btn {
  width: 100%;
  height: 54px;
  background-color: #022984;
  color: #ffffff;
  font-family: 'GmarketSansMedium';
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(2, 41, 132, 0.2);
  box-sizing: border-box;
}

.hm-submit-btn:hover {
  background-color: #011d61;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 41, 132, 0.3);
}
input.hm-input-field,
select.hm-input-field,
textarea.hm-input-field {
  width: 100%; 
  height: 54px; 
  background-color: #ffffff; 
  border: 1px solid #cbd5e1;
  border-radius: 12px; 
  padding: 0 20px; 
  font-size: 0.98rem; 
  color: #1f2937; 
  box-sizing: border-box;
  display: block;
}

/* 제휴사 */
#snsWrap.sns_wrap {
    max-width: 1300px;
    width: 100%;
	padding-bottom:20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#snsWrap .als-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

#snsWrap .als-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

#snsWrap .als-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
}

#snsWrap .als-item {
    float: none;
    flex: 0 0 10%;
    width: 10%;
    min-width: 10%;
    max-width: 10%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 6px;
}

#snsWrap .als-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    box-sizing: border-box;
}

#snsWrap .als-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

#snsWrap .als-prev,
#snsWrap .als-next {
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#snsWrap .als-prev img,
#snsWrap .als-next img {
    display: block;
    width: 20px;
    height: auto;
}

/* Footer */
#footer { 
  position: relative; 
  background: #29282e; 
  padding: 2% 0; 
  min-height: 160px;
  box-sizing: border-box;
  overflow: hidden; 
}

#footer .footer { 
  position: relative; 
  width: 1300px; 
  margin: 0 auto; 
}

#footer .f-logo { 
  display: block; 
  width: 254px; 
  height: 54px; 
  background: url('../images/main/bottom_logo.png') no-repeat; 
  background-size: contain;
}

#footer .copy { 
  position: relative; 
  margin-top: 1%; 
}

#footer .copy p,
#footer .copy .copy-text > a { 
  font-size: 16px; 
  letter-spacing: -0.5px; 
  color: #f0f0f0; 
  text-decoration: none;
}

#footer .copy .copy-text { 
  padding: 1% 0; 
}

#footer .award { 
  position: absolute; 
  top: 40px; 
  right: 4%; 
}

.scrollmenu { 
  position: fixed; 
  right: 2.8%; 
  bottom: 1.3%; 
  z-index: 998;
}

.topmb { 
  display: block; 
  width: 45px; 
  height: 45px; 
  border: 1px solid #ccc; 
  border-radius: 50px; 
  background: #FFF url('/images/main/q_ico_ar_1.png') center 12px no-repeat; 
  padding-top: 20px; 
  text-align: center; 
  font-size: 11px; 
  margin-top: 5px; 
  box-sizing: border-box; 
  text-decoration: none;
  color: #333;
}

.mobileft { 
  display: none; 
}
.privacy-policy { color: var(--hm-primary-hover, #104ede) !important; }


/* Responsive (모바일 1024px 이하) */
@media (max-width: 1024px) {
	
  .hm-gnb, .hm-topbar, .hm-header__logo { display: none; }
  
  .mgtbn img { width:100%;}

  /* 모바일 헤더 레이아웃 */
  .hm-header__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 16px;
    min-height: 56px;
    box-sizing: border-box;
  }
  .hm-header__logo-mobile { display: flex; align-items: center; justify-content: center; }
  .hm-header__logo-mobile img { height: 45px; width: auto; display: block; } 

  .hm-drawer { display: block; }
  .hm-drawer__toggle-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1005;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hm-drawer__toggle-bar {
    position: relative;
    display: block;
    width: 25px;
    height: 3px;
    background: #0d2c54;
  }
  .hm-drawer__toggle-bar::before,
  .hm-drawer__toggle-bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0d2c54;
  }
  .hm-drawer__toggle-bar::before { top: -6px; }
  .hm-drawer__toggle-bar::after { top: 6px; }

  .hm-social-share {
    display: block !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1005;
  }
  .hm-social-share__toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .hm-social-share__list {
    position: absolute;
    top: 45px;
    right: 0;
    list-style: none;
    padding: 8px;
    margin: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--hm-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .hm-social-share.is-open .hm-social-share__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hm-social-share__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
  }

  .hm-drawer__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2000;
  }
  .hm-drawer.is-open .hm-drawer__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hm-drawer__content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #ffffff;
    z-index: 2001;
    transition: left 0.3s ease;
    box-shadow: var(--hm-shadow-lg);
    display: flex;
    flex-direction: column;
  }
  .hm-drawer.is-open .hm-drawer__content { left: 0; }

  .hm-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--hm-border);
    background: #ffffff;
  }
  .hm-drawer__close-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--hm-primary);
  }

  .hm-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px 40px;
  }
  .hm-drawer__acc-list { list-style: none; padding: 0; margin: 0; }
  .hm-drawer__acc-item { border-bottom: 1px solid #f1f5f9; }

  .hm-drawer__depth1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 8px;
    font-weight: 700;
    color: var(--hm-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
  }
  .hm-drawer__depth1::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--hm-text-sub);
    border-bottom: 2px solid var(--hm-text-sub);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
  }
  .hm-drawer__acc-item.is-active .hm-drawer__depth1::after {
    transform: rotate(45deg);
  }

  .hm-drawer__depth2-list {
    display: none;
    list-style: none;
    padding: 4px 0 12px 12px;
    margin: 0;
    background: #f8fafc;
    border-radius: 8px;
  }
  .hm-drawer__acc-item.is-active .hm-drawer__depth2-list {
    display: block;
  }
  .hm-drawer__depth2-list a {
    display: block;
    padding: 8px 12px;
    color: var(--hm-text-sub);
    text-decoration: none;
    font-weight: 500;
  }
  .hm-drawer__depth2-list a:hover { color: var(--hm-accent); }

  .hm-drawer__depth3-list {
    list-style: none;
    padding-left: 12px;
    margin: 4px 0;
  }
  .hm-drawer__depth3-list a {
    font-size: 12.5px;
    color: var(--hm-text-muted);
  }

  .hm-hero__wrapper {
    padding: 0 16px;
    max-width: 100% !important;
  }
  
  .hm-hero-slider {
    overflow: hidden !important;
  }

  .hm-hero-slider .swiper-slide {
    transform: scale(1) !important;
    background-color: transparent;
  }
  .hm-hero-slider .swiper-slide::after {
    display: none !important;
  }
  
  .hm-hero-slider .swiper-button-next,
  .hm-hero-slider .swiper-button-prev {
    display: none;
  }
  
  .hm-board-section, .hm-about-section, .hm-blog-section, .hm-insights-section, .hm-info-section, .hm-news-faq-section, .hm-news-faq-section, .hm-contact-section, .hm-consult-form-section { padding:50px 20px;}
  
  /* eb5 */
  .eb5-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px;
  }

  a.main-card {
    min-height: 480px;
  }

  .sub-cards {
    max-height: none;
  }

  a.sub-card {
    height: auto;
    min-height: 140px;
  }

  .hm-country-section {
    padding: 0 16px;
  }

  .hm-country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
  }
  
  /* 공지사항 */
  .hm-board-container { grid-template-columns: 1fr;}
  .hm-board-item { max-width: 480px; margin: 0 auto; width: 100%; }
  
   /* business */  
  .hm-business-grid {
    grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding:0 15px;
  }
  .hm-business-card { 
    margin: 5px;
  }
  
  /* about */
    .hm-about-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .hm-about-card h3 {
    font-size: 2.25rem;
  }
  .hm-about-desc {
  font-size: 1rem;
}
   /* blog */
  .hm-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* global */
  .hm-insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* FAQ */
  .hm-news-faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  /* 무료상담 */
  .hm-consult-form {
    grid-template-columns: 1fr;
  }
  
  .hm-privacy-box-wrap, 
  .hm-form-action-wrap {
    grid-column: auto;
  }

  .hm-privacy-info-box {
    height: auto;
    max-height: 160px;
  }

  .hm-textarea-field {
    height: 150px;
  }
  
  /* Footer */
  #footer { 
    padding: 5% 0 15% 0; 
    height: auto;
    margin-top: 50px; 
  }
  #footer .footer { 
    width: 100%; 
  }
  #footer .f-logo { 
    width: 210px; 
    background-size: 100%; 
    margin-left: 10px; 
  }
  #footer .copy { 
    position: relative; 
    left: 0; 
    padding: 3%;
  }
  #footer .copy p,
  #footer .copy .copy-text > a { 
    font-size: 14px; 
  }
  #footer .award { 
    position: relative; 
    top: 10px; 
    right: 0; 
  }
  .scrollmenu { 
    right: 2.8%; 
    bottom: 5%; 
    z-index: 1000;
  }
  .mobileft { 
    display: block; 
    position: fixed; 
    left: 0; 
    bottom: 0; 
    width: 100%; 
    z-index: 999; 
    background: #313766;
	padding:10px 0;
  }
  .mobileft > ul { 
    width: 100%; 
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobileft > ul li { 
    flex: 1;
    box-sizing: border-box;
    padding: 15px 0 15px 50px;
    background-repeat: no-repeat;
    background-position: 15px center;
  }
  .mobileft > ul li a { 
    display: inline-block; 
    color: #FFF; 
    font-size: 15px; 
    text-decoration: none;
  }
  
  .mobileft .seminar { 
    background-image: url('../images/main/ft_ico_1.png'); 
    background-size: 22px auto; 
  }
  .mobileft .kakao { 
    background-image: url('../images/main/ft_ico_2.png'); 
    background-size: 24px auto; 
  }
  .mobileft .tellink { 
    background-image: url('../images/main/ft_ico_3.png'); 
    background-size: 20px auto; 
  }
}

/* Responsive (모바일 768px 이하) */
@media (max-width: 768px) {
  
  .hm-mobile-none { display: none; } 
  
  .hm-section-title-area {
    padding: 30px 20px;	
  }
  .hm-section-title {
    font-size: 1.625rem;
  }
  .hm-section-desc {
    font-size: 1rem;
  }
  .hm-btn-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .hm-btn-group .hm-btn {
    flex: 1;
	width: 100%;
    max-width: 180px;
	padding: 10px 5px;
	font-size: 1rem;
  }
  
  /* --- EB-5 메인 카드 --- */
  .eb5-grid {
    gap: 20px;
    padding: 40px 0;
  }

  a.main-card {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .main-card .card-thumb {
    position: relative;
    width: 100%;
    height: 180px;
  }

  .main-card .card-content {
    position: relative;
    width: 100%;
	padding: 10px 0 10px 20px;
  }

  .eb5-grid .badge-gold,
  .eb5-grid img.badge-gold {
    width: 90px !important;
    max-width: 90px !important;
    right: 10px !important;
	left:auto;
    bottom: -30px;
  }
  .main-card .title {
   font-size: 1.5rem;
  }
	
  .main-card .subtitle {
   font-size: 1rem;
  }
	
  .main-card .desc {
    font-size: 0.875rem;
  }
  .sub-cards {
    height: auto;
    max-height: none;
    gap: 16px;
  }

  a.sub-card {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .sub-card .card-thumb {
    width: 100%;
    height: 150px;
  }

  .sub-card .card-content {
    padding: 20px 16px;
  }

  .sub-card .title {
    font-size: 1.15rem;
    word-break: keep-all;
  }

  .eb5-grid .badge-small,
  .eb5-grid img.badge-small {
    width: 75px !important;
    max-width: 75px !important;
    right: 12px;
    bottom: -70px;
  }
  
  /* --- 추천 프로젝트 --- */
  .hm-country-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-thumb {
    height: 180px;
  }

  .card-body {
    padding: 24px 0 54px 16px;
  }

  .card-title {
    font-size: 1.5rem;
  }
  
  .feature-list li {
    font-size: 1.125rem;
  }
  
  /* calendar */
  .hm-calendar-section {
    padding: 30px 16px;
    box-sizing: border-box;
  }

  .hm-calendar-container {
    padding: 20px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hm-calendar-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0;
    margin-bottom: 20px;
    gap: 5px;
  }

  .hm-cal-title-wrap {
    gap: 20px;
    left: 10%;
    transform: translateX(-10%);
  }
  .hm-cal-title-wrap h3 {
    font-size: 1.1rem;
  }

  .hm-cal-icon {
    width: 22px;
    height: 22px;
  }

  .hm-calendar-header .hm-cal-btn {
    position: static;
    padding: 4px 8px;
  }
  .hm-calendar-header .hm-cal-btn img {
    max-height: 15px;
  }

  .hm-cal-reserve-btn {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 6px 12px;
    margin-left: 4px;
    white-space: nowrap;
  }

  .hm-cal-table th {
    font-size: 0.8rem;
    padding-bottom: 10px;
  }

  .hm-cal-table td {
	height: 65px;
    padding: 2px;
  }
  .hm-day-cell span {
    font-size: 0.8rem;
  }

  .hm-event-text, .hm-event-text-b {
    display: block;
    font-size: 0.58rem;
    white-space: nowrap;
    margin-top: 2px;
  }
  
  /* business */
  .hm-business-section {
    padding: 40px 25px 40px 0;
  }
  .hm-business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .hm-business-header h2 {
    font-size: 2rem;
  }
  
  /* banner */
  .hm-rolling-banner-section {
	margin:0 auto;
	overflow: hidden;
	padding-bottom:0 !important;
  }
  .hm-banner-swiper {
     height: 300px;
	 border-radius: 0;
  }
  .hm-banner-swiper img.hm-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hm-banner-pc { display: none; }
  .hm-banner-mo { display: block; }
  .hm-banner-mo img { width:100%;}
  .hm-banner-swiper .swiper-button-next,
  .hm-banner-swiper .swiper-button-prev { 
  display:none;
  }
  
  /* about */
  .hm-about-section {
    box-sizing: border-box;
	overflow: hidden;
  }
  .hm-about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hm-about-card {
    padding: 30px 15px;
  }
  .hm-about-icon {
    height: 65px;
    margin-bottom: 10px;
  }
    .hm-about-desc {
    font-size: 1.25rem;
  }
  /* blog */
  .hm-blog-grid {
   grid-template-columns: 1fr;
  }
  
  .hm-blog-section {
    box-sizing: border-box;
	overflow: hidden;
  }
  /* global */
  .hm-insights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hm-insights-section {
    box-sizing: border-box;
	overflow: hidden;
  }
  /* 초청이민 */
  .hm-info-section {
    gap: 15px;
    padding: 25px 0px;
    border-radius: 0;
	margin: 0 auto 50px;
  }

  .vertical-line {
    height: 38px;
    width: 4px;
  }

  .icon-wrap img {
    width: 46px;
  }

  .info-text {
    font-size: 0.95rem;
  }
  
  /* consultant */
  .hm-consultant-section {
    padding: 80px 0px;
  }
  .hm-consultant-content {
    padding: 15px 10px;
  }
  
  /* FAQ */
  .hm-news-faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hm-news-item,
  .hm-faq-item {
    padding: 18px 16px;
  }
  
  .hm-news-faq-section .hm-section-title {
    font-size: 1.25rem !important;
  }
  .hm-news-press { 
    display:none;
  }
  .hm-news-date {
    display:none;
  }
  .hm-news-text {
    white-space: normal;
    word-break: break-all;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.95rem;
  }
  .hm-news-content {
    margin-left: 0px;
  }
  /* contact */ 
  
  .hm-contact-info-bar {
    font-size: 0.92rem;
    gap: 8px;
  }
  
  .hm-map-wrap {
    height: 350px !important;
  }
  
  #map {
    height: 350px !important;
  }
  
  #snsWrap.sns_wrap {
        max-width: 100%;
        padding: 0 10px;
    }
    #snsWrap .als-item {
        flex: 0 0 50%;
        width: 50%;
        min-width: 50%;
        max-width: 50%;
        padding: 0 4px;
    }

  /* footer */   
  #footer .copy p { 
    font-size: 14px; 
    letter-spacing: 0.5px; 
  }
  #footer .copy .copy-text > a { 
    font-size: 0.8125rem;
    letter-spacing: 0.5px; 
  }
  
  .mobileft > ul li a { 
    font-size: 15px; 
  }
  .mobileft .seminar { 
    background-position: 15px 18px; 
  }
  .mobileft .kakao { 
    background-position: 17px 18px; 
  }
  .mobileft .tellink { 
    background-position: 18px 18px; 
  }
}

/* Responsive (모바일 480px 이하) */
@media (max-width: 480px) {
  
  .hm-header__logo-mobile img { height: 40px; } 
  
  .hm-section-title {
    font-size: 1.62rem !important;
  }
  
  .hm-btn-group .hm-btn {
    font-size: 0.75rem;
  }
  /* eb-5 */
  .main-card .title {
   font-size: 1.25rem;
  }
	
  .main-card .subtitle {
   font-size: 0.75rem;
  }
	
  .main-card .desc {
    font-size: 0.75rem;
  }
  .sub-card .title {
    font-size: 1.125rem;
    word-break: keep-all;
  }
  .sub-card .desc {
    font-size: 0.875rem;
  }
  
  .card-title {
    font-size: 1.375rem;
  }
  
  /* calendar */  
  .hm-cal-title-wrap {
    gap: 8px;
    left: 1%;
    transform: translateX(-1%);
  }
  .hm-cal-title-wrap h3 {
    font-size: 1rem;
  }

  .hm-cal-icon {
    width: 18px;
    height: 18px;
  }

  .hm-calendar-header .hm-cal-btn {
    position: static;
    padding: 4px;
  }
  .hm-cal-table th {
    font-size: 0.75rem;
  }
  
  .hm-board-header img { width: 40px; height: 40px; }
  .hm-board-header h3 {
	font-size: 1.375rem;
  }
  
  .hm-more-btn {
    font-size: 0.75rem;
  }
  
  /* business */
  .hm-business-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
 
  /* map */  
  .hm-map-wrap {
    height: 300px;
  }  
  #map {
    height: 300px;
  }
  /* faq */  
  .hm-news-faq-section {
    width: 100%;
    overflow-x: hidden;
  }
 .hm-news-faq-container {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0;
    padding: 0;
  }
  .hm-news-box,
  .hm-faq-box {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .hm-box-header {
    width: 100%;
    box-sizing: border-box;
  }
  .hm-news-faq-section .hm-section-desc {
  font-size: 0.875rem;
}
  
}