:root {
  --primary: #1B4284;
  --primary-light: #e8eef6;
  --primary-dark: #0f2d5e;
  --accent: #00B4A0;
  --accent-light: #e6f8f5;
  --accent-dark: #008f7f;
  --black: #222;
  --gray-900: #333;
  --gray-700: #555;
  --gray-600: #666;
  --gray-500: #888;
  --gray-400: #aaa;
  --gray-300: #ccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f6f8;
  --white: #fff;
  --red: #e53e3e;
  --green: #16a34a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --transition: .25s ease;
  --max-width: 1500px;
  --header-top-height: 36px;
  --header-main-height: 80px;
  --header-height: calc(var(--header-top-height) + var(--header-main-height));
}
.inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
}
.header-top {
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.header-top .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: var(--header-top-height);
  gap: 16px;
}
.header-top a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.header-top a:hover { color: var(--white); }
.header-top__divider { width: 1px; height: 12px; background: rgba(255,255,255,.2); }
.header-top__naver {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: auto;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
}
.naver-search__logo {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  height: 100%;
  background: #03c75a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.naver-search__box {
  display: inline-flex;
  align-items: center;
  padding: 0 2px 0 10px;
  height: 100%;
  background: #fff;
  border: 1px solid #03c75a;
  border-left: none;
  border-right: none;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 90px;
}
.naver-search__box::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #03c75a;
  margin-left: 2px;
  animation: blink-cursor .6s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.naver-search__btn {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  height: 100%;
  background: #03c75a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.naver-search__btn:hover { background: #02b350; }
.header.is-scrolled .header-top { border-bottom-color: var(--gray-200); }
.header.is-scrolled .header-top a { color: var(--gray-600); }
.header.is-scrolled .header-top a:hover { color: var(--primary); }
.header.is-scrolled .header-top__divider { background: var(--gray-300); }
.header-main .inner {
  display: flex;
  align-items: center;
  height: var(--header-main-height);
}
.header__logo { flex-shrink: 0; margin-right: 48px; }
.header__logo a { display: block; }
.header__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
  display: block;
}
.header.is-scrolled .header__logo img { filter: none; }
.gnb { display: flex; align-items: center; gap: 4px; flex: 1; }
.gnb__item {
  position: relative;
  padding: 0 20px;
  height: var(--header-main-height);
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.gnb__item:hover { color: var(--white); }
.gnb__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--white);
  transform: translateX(-50%);
  transition: width var(--transition), background var(--transition);
}
.gnb__item:hover::after { width: calc(100% - 40px); }
.header.is-scrolled .gnb__item { color: var(--gray-900); }
.header.is-scrolled .gnb__item:hover { color: var(--primary); }
.header.is-scrolled .gnb__item::after { background: var(--primary); }
.header-tel{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-tel svg{
  width: 20px;
  height: 20px;
  fill:#fff;
  display: block;
  transition:var(--transition);
}
.header-tel a{
  color:#fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 22px;
  transition:var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-tel a em{
  font-style: normal;
}
.header-tel a span{
  font-weight: 400;
  font-size: 16px;
}
.header__utils {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.btn-call {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.btn-call svg { width: 20px; height: 20px; }
.btn-call:hover { background: rgba(255,255,255,.1); color: var(--white); }
.header.is-scrolled .header-tel a { color: var(--gray-900); }
.header.is-scrolled .header-tel svg { fill: var(--gray-900); }
.header.is-scrolled .btn-call { color: var(--gray-700); }
.header.is-scrolled .btn-call:hover { background: var(--gray-100); color: var(--primary); }
.btn-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.btn-hamburger:hover { background: rgba(255,255,255,.1); }
.btn-hamburger span,
.btn-hamburger span::before,
.btn-hamburger span::after {
  display: block; width: 20px; height: 2px; background: var(--white);
  position: relative; transition: all var(--transition);
}
.btn-hamburger span::before,
.btn-hamburger span::after { content: ''; position: absolute; left: 0; }
.btn-hamburger span::before { top: -6px; }
.btn-hamburger span::after { top: 6px; }
.header.is-scrolled .btn-hamburger:hover { background: var(--gray-100); }
.header.is-scrolled .btn-hamburger span,
.header.is-scrolled .btn-hamburger span::before,
.header.is-scrolled .btn-hamburger span::after { background: var(--gray-900); }
.hero {
  position: relative;
  background: linear-gradient(135deg, #1B4284 0%, #2d6bc4 40%, #00B4A0 100%);
  overflow: hidden;
  padding-top: var(--header-height);
  background-size: cover;
  background-position: right top 30%;
  background-repeat: no-repeat;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.15);
}
.hero .inner {
  display: flex;
  align-items: stretch;
  min-height: unset !important;
  position: relative;
  flex-direction: column;
}
.hero__content {
  flex: 1;
  padding: 25px 0 0;
  z-index: 2;
}
.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: 33px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  max-width: 460px;
  font-weight: 400;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: gap var(--transition), color var(--transition);
}
.hero__link:hover { color: var(--white); gap: 12px; }
.hero__link svg { width: 18px; height: 18px; }
.hero__quick {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding: 40px 0 50px;
  z-index: 2;
}
.hero-bg{
  position: absolute;
  inset:0;
}
.hero-bg .bg-item{
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  inset:0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg .bg-item.active{
  opacity: 1;
}
.quick-box {
  background: var(--white);
  border-radius: 60px;
  box-shadow: var(--shadow-lg);
  padding: 10px 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 920px;
}
.quick-box__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
  display: none;
}
.search-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.search-form__row {
  display: flex;
  gap: 8px;
  flex: 1;
  width: 100%;
}
.search-form__row .search-form__select {flex: 1;border-left: 1px solid #e0e0e0;padding: 0 15px;height: 40px;}
.search-form__row:first-child .search-form__select:first-child{border-left: 0}
.search-form__select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  color: var(--gray-900);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  font-weight: 500;
}
.search-form__keyword {
  flex: 0 0 120px;
  height: 40px;
  padding: 0 14px;
  border: none;
  border-left: 1px solid #e0e0e0;
  font-size: 15px;
  color: var(--gray-900);
  background: transparent;
}
.search-form__keyword::placeholder { color: var(--gray-400); }
.search-form__keyword:focus { outline: none; }
.search-form__btn {
  flex-shrink: 0;
  position: relative;
  width: 130px;
  padding: 0;
  background: linear-gradient(135deg, #ff6f6f 0%, #ff0303 60%, #b80606 100%);
  color: var(--white);
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 53px;
  border: none;
  letter-spacing: .3px;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(27,66,132,.35),
    0 2px 6px rgba(0,0,0,.1),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.search-form__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 50%, transparent 100%);
  border-radius: inherit;
  transition: opacity .3s ease;
}
.search-form__btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 80%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.search-form__btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 28px rgba(27,66,132,.4),
    0 4px 10px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.2);
  background: linear-gradient(135deg, #ff2424 0%, #dc0000 60%, #b90707 100%);
}
.search-form__btn:hover::after { left: 120%; }
.search-form__btn:active {
  transform: translateY(1px) scale(.99);
  box-shadow:
    0 2px 8px rgba(27,66,132,.25),
    inset 0 2px 4px rgba(0,0,0,.15);
}
.search-form__btn svg {width: 24px;position: relative;z-index: 1;height: auto;display: none;}
.search-form__btn span,
.search-form__btn { z-index: 1; }

@media (max-width:768px){
  .quick-box{
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
  }
  .search-form{
    flex-direction: column;
    position: relative;
    padding-right: 80px;
    gap: 0;
  }
  .search-form__btn{
    position: absolute;
    right:0;
    top:0;
    bottom:0;
    width: 80px;
    font-size: 13px;
    height: auto;
    border-radius: 0 15px 15px 0;
    box-shadow: none;
  }
  .search-form__row{
    border-top:1px solid #e0e0e0;
  }
  .search-form__row:first-child{
    border-top:0;
  }
  .search-form__row .search-form__select{
    font-size:13px;
    height:42px
  }
  .search-form__keyword{
    width: 100%;
    flex: unset;
    height: 42px;
    font-size: 13px;
    border-left: 0;
    border-top: 1px solid #e0e0e0;
  }
}
.hero__bg-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.section {padding: 50px 0;}
.section--gray { background: var(--gray-100); }
.section--best {
  background-color: var(--gray-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='%231B4284' stroke-width='.5' opacity='.035'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  padding: 22px 0;
  overflow-x: hidden;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}
.section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}
.section--best .section__title { font-size: 22px; }
.section__title em { font-style: normal; color: var(--primary); }
.section__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color var(--transition);
}
.section__more:hover { color: var(--primary); }
.section__more svg { width: 16px; height: 16px; }
.quick-bar {
  position: relative;
}
.quick-bar__wrap {
  display: flex;
  align-items: stretch;
  /* background: var(--white); */
  /* border-radius: var(--radius-lg); */
  /* box-shadow: 0 4px 24px rgba(0,0,0,.1); */
  /* overflow: hidden; */
}
.quick-bar__cs {
  flex-shrink: 0;
  width: 370px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 18px 22px 18px 0;
  /* background: #f5f6f8; */
  border-radius: 20px;
}
.quick-bar__cs-box{
  display: flex;
  align-items: stretch;
  gap: 21px;
  background: #f5f6f8;
  justify-content: center;
  padding-right: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.quick-bar__cs-icon {
  flex-shrink: 0;
  width: 64px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e53e3e url(/assets/images/icon_phone.png) no-repeat center / 50%;
}
.quick-bar__cs-icon svg { width: 64px; height: 64px; }
.quick-bar__cs-text {
    padding: 10px;
}
.quick-bar__cs-label {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 13px;
  line-height: 1;
}
.quick-bar__cs-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 400;
}
.quick-bar__cs-tel {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.35;
}
.quick-bar__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.quick-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 0;
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 137px;
  aspect-ratio: 1;
}
.quick-bar__item:hover {
  /* background: var(--gray-100); */
  transform: translateY(-3px);
}
.quick-bar__item:hover .quick-bar__icon {
}
.quick-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: calc(100% - 20px);
  /* background-color: var(--gray-100); */
  border-radius: 12px;
  transition: all var(--transition);
}
.quick-bar__icon svg { width: 64px; height: 64px; }
.quick-bar__label {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  line-height: 20px;
}
.section__header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  display: none;
}
.slider-nav {
  display: flex;
  gap: 6px;
}
.slider-nav .slider-arrow {
  position: static;
  transform: none;
  width: 36px;
  height: 36px;
}
.slider-nav .slider-arrow:hover { transform: none; box-shadow: 0 4px 12px rgba(27,66,132,.25); }
.slider-nav .slider-arrow svg { width: 18px; height: 18px; }
.product-slider {
  position: relative;
  padding: 0;
}
.product-swiper { overflow: hidden; padding: 4px 0; }
.product-swiper.swiper-initialized { overflow: visible; }
.product-swiper .swiper-wrapper{
  transition-timing-function: linear !important;
  max-height: 135px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.product-card__thumb {
  position: relative;
  overflow: hidden;
  padding: 7px 0;
  border-bottom: 1px dashed #e0e0e0;
  margin: 0 10px;
}
.product-card__badge {
  /* position: absolute; */
  top: 9px;
  left: 0;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  display: block;
  text-align: center;
}
.product-card__num{
  font-size: 13px;
  padding: 5px 4px 0;
}
.product-card__body {
  padding: 7px 18px 12px;
}
.product-card__title {
  font-size: 16px;
  font-weight: 800;
  color:red;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__info {
  display: flex;
  /* flex-direction: column; */
  gap: 3px;
  margin-bottom: 4px;
}
.product-card__row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #000;
  font-weight: 500;
}
.product-card__row strong {color: var(--gray-600);font-weight: 400;margin-right: 2px;}
.product-card__price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.product-card__price small {font-size: 12px;font-weight: 500;color: var(--gray-600);margin-right: 6px;}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }
.slider-arrow:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27,66,132,.25);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg { width: 20px; height: 20px; }
.product-card { height: 100%; }
.listing-wrap {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 12px;
  align-items: stretch;
  grid-template-rows: 1fr;
}
.listing-side__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1dd2c0;
}
.listing-side__title {
  font-size: 17px;
  font-weight: 800;
  color: rgb(28 210 193 / 100%);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.3px;
}
.listing-side__title svg {width: 18px;height: 18px;color: #1dd2c0;}
.listing-side--left .listing-side__header { border-bottom-color: var(--red); }
.listing-side--left .listing-side__title,
.listing-side--left .listing-side__title svg { color: var(--red); }
.listing-side__more {
  font-size: 12px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.listing-side__more:hover { color: var(--primary); }
.listing-side {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: calc(var(--header-height, 120px) + 16px);
  align-self: start;
}
.listing-side__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  width: 100%;
}
.listing-side-swiper .swiper-wrapper {
  flex-direction: column;
  gap: 10px;
}
.listing-side-swiper .swiper-slide {
  height: auto;
}
.mini-card {
  display: block;
  padding: 8px 12px;
  border: 5px solid transparent;
  transition: all var(--transition);
  border-radius: 6px;
}
.mini-card:hover { padding-left: 16px; }
.mini-card--urgent {
  border-color: rgba(229,62,62,.2);
  background: rgba(229,62,62,.04);
}
.mini-card--urgent:hover { background: rgba(229,62,62,.08); }
.listing-side--right .mini-card {
  border: 5px solid rgb(28 210 193 / 20%);
  background: rgb(28 210 193 / 10%);
}
.listing-side--right .mini-card:hover {background: rgb(28 210 193 / 18%);}
.mini-card__no {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  display: block;
}
.mini-card__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-card__name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-card__info {
  font-size: 12px;
  color: var(--gray-900);
  font-weight: 500;
}
.listing-center {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.listing-center__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
  letter-spacing: -0.3px;
}
.listing-table-wrap {
  flex: 1;
}
.listing-search {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.listing-search__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listing-search__top {
  display: flex;
  gap: 8px;
  align-items: center;
}
.listing-search__regions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.listing-search__region-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.listing-search__region-row .listing-search__select {
  min-width: 0;
}
.listing-search__region-btn {
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 12px;
  font-weight: 600;
  gap: 2px;
}
.listing-search__region-btn--add {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 0 10px;
  white-space: nowrap;
}
.listing-search__region-btn--add:hover {
  background: var(--primary-dark);
}
.listing-search__region-btn--remove {
  width: 32px;
  background: var(--white);
  color: var(--red);
  border: 1px solid var(--gray-300);
}
.listing-search__region-btn--remove:hover {
  background: #fef2f2;
  border-color: var(--red);
}
.listing-search__select {
  flex: 1;
  padding: 9px 28px 9px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  color: var(--gray-900);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center;
  appearance: none;
}
.listing-search__input {
  width: 100px;
  padding: 9px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  background: var(--white);
}
.listing-search__input::placeholder { color: var(--gray-400); }
.listing-search__btn {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.listing-search__btn:hover { background: var(--primary-dark); }
.listing-search__btn svg { width: 16px; height: 16px; }
.listing-table-wrap {
  /* overflow-x: auto; */
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
}
.listing-table {
  width: 100%;
  font-size: 13px;
  table-layout: fixed;
}
.listing-table thead { background: var(--gray-100); }
.listing-table th {
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--gray-200);
}
.listing-table td {
  padding: 11px 10px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
  line-height: 1.2;
}
.listing-table tbody tr { transition: background var(--transition); }
.listing-table tbody tr:hover { background: var(--primary-light); }
.td-price { font-weight: 700; color: var(--primary) !important; }
.listing-table--single .td-title {
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-table--single .td-title a{
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color:red;
}
.listing-table--single .th-title { text-align: left; }
.listing-table--single .td-no {
  font-weight: 700;
  color: var(--gray-400);
  font-size: 12px;
}
.listing-table--single .td-price {
  font-weight: 800;
  white-space: nowrap;
}
.listing-table--single .td-date {
  font-size: 12px;
  color: var(--gray-400);
}
.listing-table--single tbody tr { cursor: pointer; }
.td-call { display: none; }
.listing-table--single td { padding: 9px 8px; }
.listing-table--single th { padding: 10px 8px; }
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}
.badge--blue { background: #e8eef6; color: var(--primary); }
.badge--green { background: var(--accent-light); color: var(--accent-dark); }
.badge--orange { background: #fef3e2; color: #d97706; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.faq-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.faq-card__quote {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 12px;
}
.faq-card__question {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 46px;
}
.faq-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-500);
  transition: color var(--transition);
}
.faq-card__link:hover { color: var(--primary); }
.bottom-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.bottom-banner {
  display: flex;
  /* flex-direction: row; */
  gap: 16px;
  max-width: 986px;
  margin: 0 auto;
}
.banner-card {
  border-radius: var(--radius);
  padding: 28px 28px;
  overflow: hidden;
  flex: 1;
}
.banner-card:first-child{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner-card--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
  color: var(--white);
}
.banner-card--light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--black);
}
.banner-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}
.banner-card__desc {
  font-size: 13px;
  line-height: 1.6;
  opacity: .6;
  margin-bottom: 14px;
  font-weight: 400;
}
.banner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}
.banner-card--primary .banner-card__link { color: var(--white); }
.banner-card--light .banner-card__link { color: var(--primary); }
.banner-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.banner-card { transition: all var(--transition); }
.banner-card__link:hover { gap: 10px; }
.banner-card__link svg { width: 16px; height: 16px; }
.banner-card--partner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0;
  /* overflow: hidden; */
}
.banner-card__img {
  width: 100%;
  display: block;
}
.partner-card__label {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}
.partner-card__company {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.partner-card__contacts p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}
.partner-card__contacts strong {
  color: var(--gray-400);
  font-weight: 600;
  margin-right: 4px;
}
.partner-card__tag {
  display: inline-block;
  padding: 1px 6px;
  background: var(--red);
  color: var(--white);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}
.notice-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.notice-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
}
.notice-box__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}
.notice-box__title svg { width: 18px; height: 18px; color: var(--primary); }
.notice-box__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  transition: color var(--transition);
}
.notice-box__more:hover { color: var(--primary); }
.notice-box__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.notice-box__list li { flex: 1; }
.notice-box__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.notice-box__list li:last-child a { border-bottom: none; }
.notice-box__list li a:hover { padding-left: 4px; }
.notice-box__list li a:hover .notice-box__text { color: var(--primary); }
.notice-box__badge {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
}
.notice-box__text {
  flex: 1;
  font-size: 14px;
  color: var(--gray-700);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--transition);
}
.notice-box__date {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
}
.footer-cs {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 12px 0;
}
.footer-cs .inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cs__label { font-size: 14px; font-weight: 700; color: var(--gray-700); }
.footer-cs__tel { font-size: 26px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.footer-cs__tel a:nth-child(2){display: none;}
.footer-cs__time { font-size: 12px; color: var(--gray-400); font-weight: 400; }
.footer-cs__btns { display: flex; gap: 8px; margin-left: auto; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline svg { width: 16px; height: 16px; }
.footer-links {
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
  display: none;
}
.footer-links .inner {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--gray-600); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-links a.is-bold { font-weight: 700; color: var(--black); }
.footer-info {background: var(--white);padding: 28px 0 32px;border-top: 1px solid var(--gray-200);}
.footer-info .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-info__left { flex: 1; }
.footer-info__logo { margin-bottom: 16px; }
.footer-info__logo img {height: 28px;}
.footer-info__text { font-size: 13px; color: var(--gray-500); line-height: 1.8; }
.footer-info__copy { margin-top: 12px; font-size: 12px; color: var(--gray-400); }
.quick-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 175px;
}
.quick-menu__recent {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  overflow: hidden;
}
.quick-recent__header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.quick-recent__header svg { width: 14px; height: 14px; flex-shrink: 0; }
.quick-recent__list {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mini-card--recent {
  border:0;
  background: rgba(27,66,132,.03);
  padding: 7px 10px;
}
.mini-card--recent:hover { background: rgba(27,66,132,.08); }
.mini-card--recent .mini-card__title {font-size: 12px;font-weight: 600;}
.mini-card--recent .mini-card__name {font-size: 13px;}
.mini-card--recent .mini-card__info { font-size: 10px; }
.quick-recent__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.quick-recent__arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  transition: all var(--transition);
}
.quick-recent__arrow:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.quick-recent__page {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}
.quick-recent__page em { font-style: normal; color: var(--primary); font-weight: 700; }
.quick-menu__item {
  width: 100%;
  height: auto;
  padding: 13px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.quick-menu__item--primary {
  background: linear-gradient(135deg, #4f8ef7 0%, var(--primary) 60%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27,66,132,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.quick-menu__item--secondary {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 60%, #c2410c 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(234,88,12,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.quick-menu__item--accent {
  background: linear-gradient(135deg, #2ee8c8 0%, var(--accent) 60%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,180,160,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.quick-menu__item--white {
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
  color: var(--gray-700);
  box-shadow: 0 4px 14px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid var(--gray-200);
}
.quick-menu__item:hover { transform: translateX(-4px) translateY(-1px); }
.quick-menu__item--primary:hover { box-shadow: 0 6px 20px rgba(27,66,132,.4), inset 0 1px 0 rgba(255,255,255,.2); }
.quick-menu__item--secondary:hover { box-shadow: 0 6px 20px rgba(234,88,12,.4), inset 0 1px 0 rgba(255,255,255,.2); }
.quick-menu__item--accent:hover { box-shadow: 0 6px 20px rgba(0,180,160,.4), inset 0 1px 0 rgba(255,255,255,.2); }
.quick-menu__item--yellow { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 60%, #d97706 100%); color: var(--white); box-shadow: 0 4px 14px rgba(245,158,11,.3), inset 0 1px 0 rgba(255,255,255,.15); }
.quick-menu__item--yellow:hover { box-shadow: 0 6px 20px rgba(245,158,11,.4), inset 0 1px 0 rgba(255,255,255,.2); }
.quick-menu__item--white:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.8); border-color: var(--primary); color: var(--primary); }
.quick-menu__item:active { transform: translateX(-2px) translateY(1px); }
.quick-menu__item svg { width: 18px; height: 18px; flex-shrink: 0; }
.quick-menu__item span {font-size: 16px;line-height: 1;font-weight: 700;}
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}
.mobile-bottom__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all .2s;
}
.mobile-bottom__icon {
  width: 66px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
  box-shadow: 0 2px 6px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid var(--gray-200);
  transition: all .2s;
  font-size: 13px;
}
.mobile-bottom__icon svg {width: 20px;height: auto;}
.mobile-bottom__item--primary .mobile-bottom__icon {
  background: linear-gradient(135deg, #4f8ef7 0%, var(--primary) 60%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(27,66,132,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.mobile-bottom__item--secondary .mobile-bottom__icon {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 60%, #c2410c 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(234,88,12,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.mobile-bottom__item--accent .mobile-bottom__icon {
  background: linear-gradient(135deg, #2ee8c8 0%, var(--accent) 60%, var(--accent-dark) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0,180,160,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.mobile-bottom__item:active .mobile-bottom__icon { transform: scale(.9); }
.mobile-bottom__item--primary { color: var(--primary); font-weight: 700; }
.mobile-bottom__item--secondary { color: #ea580c; font-weight: 700; }
.mobile-bottom__item--accent { color: var(--accent-dark); font-weight: 700; }
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 0 44px;
  text-align: center;
}
.page-header__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.page-header__breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.page-header__breadcrumb a:hover { color: var(--white); }
.page-header__breadcrumb svg { width: 14px; height: 14px; }
.sub-content {
  padding: 20px 0 60px;
}
.sub-content .inner {
  max-width: var(--max-width);
}
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}
.info-card__header svg { width: 22px; height: 22px; color: var(--primary); }
.info-card__body { padding: 28px; }
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  line-height: 1.6;
}
.info-table th {
  width: 120px;
  font-weight: 700;
  color: var(--primary);
  background: var(--gray-50);
  white-space: nowrap;
}
.info-table td { color: var(--gray-700); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.map-wrap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.board-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.board-toolbar__count {
  font-size: 14px;
  color: var(--gray-500);
  margin-right: auto;
}
.board-toolbar__count strong {
  color: var(--primary);
}
.board-toolbar .btn-write {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 600;
  text-decoration: none;
  padding: 0 16px;
}
.board-toolbar__search {
  display: flex;
  gap: 6px;
  align-items: center;
}
.board-toolbar select,
.board-toolbar input,
.board-toolbar button,
.board-toolbar .btn-write {
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 13px;
  box-sizing: border-box;
}
.board-toolbar select {
  appearance: auto;
  -webkit-appearance: menulist;
}
.board-toolbar input {
  width: 140px;
}
.board-toolbar button {
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}
.board-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--primary);
  table-layout: fixed;
}
.board-table th {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  white-space: nowrap;
}
.board-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  white-space: nowrap;
}
.board-table td.td-left {
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-table td.td-left a {
  display: inline;
}
.board-table td a { color: var(--gray-700); transition: color .2s; }
.board-table td a:hover { color: var(--primary); }
.board-table tbody tr:hover { background: var(--primary-light); }
.board-view {
  border-top: 2px solid var(--primary);
}
.board-view__header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.board-view__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 12px;
}
.board-view__meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-500);
}
.board-view__meta strong {
  color: var(--gray-700);
  font-weight: 600;
  margin-right: 4px;
}
.board-view__body {
  padding: 32px 20px;
  min-height: 200px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.board-view__file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-600);
}
.board-view__file svg { width: 16px; height: 16px; flex-shrink: 0; }
.board-view__file a { color: var(--primary); font-weight: 600; }
.board-view__file a:hover { text-decoration: underline; }
.board-view__nav {
  border-bottom: 1px solid var(--gray-200);
}
.board-view__nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: background .2s;
}
.board-view__nav-item:last-child { border-bottom: none; }
.board-view__nav-item:hover { background: var(--gray-100); }
.board-view__nav-label {
  font-weight: 700;
  color: var(--gray-500);
  min-width: 60px;
  font-size: 13px;
}
.board-view__nav-item a {
  color: var(--gray-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.board-view__nav-item a:hover { color: var(--primary); }
.board-view__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.board-view__actions .btn-submit,
.board-view__actions .btn-cancel {
  padding: 10px 28px;
  font-size: 14px;
}
.board-view__admin {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all .2s;
}
.pagination__item:hover { background: var(--gray-100); color: var(--primary); }
.pagination__item.is-active {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.pagination__item svg { width: 16px; height: 16px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.form-card__header {
  padding: 20px 28px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}
.form-card__body { padding: 28px; }
.form-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.form-group:last-child { border-bottom: none; }
.form-label {
  width: 120px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  padding-top: 8px;
}
.form-label .required { color: #e53e3e; margin-left: 2px; }
.form-control {
  flex: 1;
  min-width: 0;
}
.form-input,
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color .2s;
}
.form-input:focus,
.form-select:focus { border-color: var(--primary); }
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  resize: vertical;
  min-height: 150px;
  transition: border-color .2s;
}
.form-textarea:focus { border-color: var(--primary); }
.form-row {
  display: flex;
  gap: 8px;
}
.form-row .form-select,
.form-row .form-input { flex: 1; }
.form-hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
}
.form-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 28px;
  margin-top: 8px;
}
.btn-submit {
  padding: 12px 48px;
  background: linear-gradient(135deg, #4f8ef7 0%, var(--primary) 60%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(27,66,132,.3), inset 0 1px 0 rgba(255,255,255,.15);
  transition: all .3s;
}
.btn-submit:hover { box-shadow: 0 6px 20px rgba(27,66,132,.4); transform: translateY(-1px); }
.btn-cancel {
  padding: 12px 48px;
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: all .3s;
}
.btn-cancel:hover { border-color: var(--gray-300); }
.form-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.form-tbl__section {
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--gray-700);
  text-align: left;
  letter-spacing: -.3px;
}
.form-tbl__section--info {
  background: var(--primary);
}
.form-tbl__notice {
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.4;
  word-break: keep-all;
}
.form-tbl__notice-black {
  font-size: 13px;
  color: var(--gray-700);
  padding: 10px 20px;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-200);
}
.form-tbl__notice-black strong { font-weight: 700; }
.form-tbl__notice-black input[type="checkbox"] {
  width: 16px; height: 16px;
  vertical-align: middle;
  margin-left: 6px;
  accent-color: var(--primary);
}
.form-tbl th {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  text-align: left;
  white-space: nowrap;
  width: 120px;
  vertical-align: middle;
}
.form-tbl th .th-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
  margin-top: 2px;
}
.form-tbl td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.form-tbl tr:last-child th,
.form-tbl tr:last-child td { border-bottom: none; }
.form-tbl input[type="text"],
.form-tbl input[type="password"],
.form-tbl input[type="tel"] {
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color .2s;
}
.form-tbl select {
  height: 38px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s;
}
.form-tbl textarea {
  width: 100%;
  min-height: 150px;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  resize: vertical;
  transition: border-color .2s;
}
.form-tbl input:focus,
.form-tbl select:focus,
.form-tbl textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.form-tbl .input--xs { width: 56px; }
.form-tbl .input--sm { width: 72px; }
.form-tbl .input--md { width: 160px; max-width: 100%; }
.form-tbl .input--lg { width: 200px; max-width: 100%; }
.form-tbl .input--full { width: 100%; max-width: 500px; }
.form-tbl .textarea--sm { min-height: 100px; }
.phone-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.phone-group input { width: 68px; }
.phone-group select { width: 76px; }
.phone-group .sep { color: var(--gray-400); }
.form-tbl .unit {
  font-size: 13px;
  color: var(--gray-500);
  margin-left: 6px;
  white-space: nowrap;
  width: 40px;
}
.form-tbl .hint {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  line-height: 1.4;
  word-break: keep-all;
}
.form-tbl .hint--red {
  color: #e53e3e;
}
.form-tbl .inline-pair {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form-tbl .inline-pair + .inline-pair { margin-left: 16px; }
.prop-tbl__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.prop-tbl__subtitle {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.4em;
}
.prop-tbl {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.prop-tbl th {
  width: 15%;
  padding: 14px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  text-align: left;
  /* white-space: nowrap; */
  vertical-align: middle;
  word-break: keep-all;
}
.prop-tbl td+th{
  border-left: 1px solid var(--gray-200);
}
.prop-tbl td {
  width: 35%;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
  line-height: 1.6;
}
.prop-tbl tr:last-child th,
.prop-tbl tr:last-child td { border-bottom: none; }
.prop-tbl__status {
  display: inline-block;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 4px;
}
.prop-tbl__price {
  font-weight: 700;
  color: var(--primary);
}
.prop-tbl__desc {
  white-space: normal;
  line-height: 1.8;
}
.prop-tbl__desc p { margin-bottom: 6px; }
.prop-tbl__desc p:last-child { margin-bottom: 0; }
.prop-tbl__contact th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-right-color: rgba(255,255,255,.2);
}
.prop-tbl__contact td {
  background: var(--primary-light);
  font-weight: 600;
}
.prop-tbl__contact td a {
  color: var(--primary);
  font-weight: 700;
}
@media (max-width: 768px) {
  .prop-tbl th { width: 90px; padding: 10px 14px; font-size: 13px; }
  .prop-tbl td { padding: 10px 14px; font-size: 13px; }
  .prop-tbl td:nth-child(4) { border-right: none; }
}
.buyer-modal .modal {
  max-width: 560px;
}
.buyer-modal .modal__header {
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
}
.buyer-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.buyer-detail__row {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
}
.buyer-detail__row:last-child { border-bottom: none; }
.buyer-detail__label {
  width: 120px;
  flex-shrink: 0;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
}
.buyer-detail__value {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .form-tbl {}
  .form-tbl th {width: 100%;padding: 10px 9px;font-size: 13px;}
  .form-tbl td {padding: 8px 10px;margin-bottom: 15px;}
  .form-tbl input[type="text"],
  .form-tbl input[type="password"],
  .form-tbl input[type="tel"] {height: 36px;font-size: 13px;border-radius: 6px;width: 100%;}
  .form-tbl select { height: 36px; font-size: 13px; border-radius: 6px; }
  .form-tbl select+select{margin-top:6px}
  .form-tbl textarea { font-size: 13px; min-height: 120px; border-radius: 6px; }
  .phone-group input { width: 52px; }
  .phone-group select { width: 60px; }
  .buyer-detail__label { width: 90px; padding: 10px 12px; font-size: 13px; }
  .buyer-detail__value { padding: 10px 12px; font-size: 13px; }
}
.sub-page-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--black);
  letter-spacing: -0.3px;
}
.step-section {
  margin-bottom: 48px;
}
.step-section:last-child { margin-bottom: 0; }
.step-section__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-section__title svg { width: 24px; height: 24px; }
.step-grid {
  display: grid;
  gap: 16px;
}
.step-grid--4 { grid-template-columns: repeat(4, 1fr); }
.step-grid--3 { grid-template-columns: repeat(3, 1fr); }
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 25px 15px;
  text-align: center;
  position: relative;
  transition: all .3s ease;
}
.step-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(27,66,132,.1);
  transform: translateY(-2px);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-section--sell .step-card__num {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}
.step-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-card__desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  word-break: keep-all;
}
.mobile-nav__app {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}
.mobile-nav__app:hover { opacity: .9; }
.mobile-nav__app svg { width: 20px; height: 20px; flex-shrink: 0; }
.company-section { margin-bottom: 40px; }
.company-section:last-child { margin-bottom: 0; }
.company-greeting {
  font-size: 15px;
  line-height: 1.4;
  color: var(--gray-700);
}
.company-greeting strong { color: var(--primary); font-weight: 700; }
@media (max-width: 1400px) {
  :root {
    --header-main-height: 70px;
  }
  .hero .inner { min-height: 420px; }
  .hero__title { font-size: 36px; }
  .header__logo{
    margin-right: 20px;
  }
  .header .header__logo img{
    height:34px
  }
  .header-tel svg{
    width:15px
  }
  .header-tel a{
    /* flex-direction: column; */
    align-items: center;
    gap: 4px;
    font-size: 18px;
  }
  .header-tel a em{
    line-height: 1;
  }
  .header-tel a span{
    /* display: none; */
  }
  .gnb__item{
    font-size: 16px;
    padding: 0 15px;
  }
  .quick-bar__cs {width: auto;/* padding: 24px; */margin: 10px 15px 10px 0;}
  .quick-bar__cs-tel {font-size: 18px;}
  .quick-bar__cs-icon {/* width: 52px; */height: auto;}
  .quick-bar__cs-icon svg { width: 52px; height: 52px; }
  .quick-bar__menu {/* gap: 28px; */padding: 20px 0;}
  .quick-bar__icon {/* width: 60px; *//* height: 60px; */}
  .quick-bar__icon svg { width: 52px; height: 52px; }
  .listing-wrap { grid-template-columns: 200px 1fr 200px; }
}
@media (max-width: 1024px) {
  :root { --header-main-height: 64px; --header-height: var(--header-main-height); }
  .header-top { display: none; }
  .gnb { display: none; }
  .header-tel{display: none;}
  .btn-call { display: flex; }
  .btn-hamburger { display: flex; }
  .hero .inner { flex-direction: column; min-height: auto; }
  .hero__content {padding: 40px 0;}
  .hero__title { font-size: 28px; }
  .hero__quick {width: 100%;padding: 0 0 31px;}
  .hero__bg-deco { display: none; }
  .quick-bar{margin:0;padding:0;}
  .quick-bar__wrap {flex-direction: column;box-shadow: unset;border-radius: 0;}
  .quick-bar__cs {width: 100%;border-right: none;border-bottom: 1px solid var(--gray-200);padding: 20px 24px;flex-direction: row;align-items: center;gap: 16px;justify-content:center;display: none;}
  .quick-bar__cs-text{width:auto;flex: unset;}
  .quick-bar__cs-sub { margin-bottom: 0; }
  .quick-bar__cs-icon { width: 48px; height: 48px; }
  .quick-bar__cs-icon svg { width: 48px; height: 48px; }
  .quick-bar__menu {gap: 22px;padding: 12px 0;justify-content: space-between;}
  .quick-bar__item{height: auto;}
  .quick-bar__icon{height: 90px;}
  .quick-bar__icon svg { width: 48px; height: 48px; }
  .listing-wrap {grid-template-columns: 1fr;gap: 40px;}
  .listing-center { order: -1; }
  .listing-center__title { display: block; }
  .listing-side--left { order: 1; }
  .listing-side--right { order: 2; }
  .listing-side {display: flex;flex-direction: column;min-width: 0;/* overflow: clip; */}
  .listing-side-swiper { overflow: visible; width: 100%; min-width: 0; }
  .listing-side-swiper .swiper-wrapper { flex-direction: row; gap: 0; }
  .listing-side-swiper .mini-card { height: 100%; }
  .listing-table th:nth-child(5),
  .listing-table td:nth-child(5),
  .listing-table th:nth-child(10),
  .listing-table td:nth-child(10) { display: none; }
  /* .bottom-wrap { grid-template-columns: 1fr; } */
  /* .bottom-banner { flex-direction: column; } */
  .banner-card{
    width: calc((100% - 32px) / 3);
    flex: unset;
  }
  .section {padding: 38px 0;overflow-x: hidden;}
  .section__title { font-size: 26px; }
  .quick-menu { display: none; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 56px; }
}

/* ─── PC 2-line table layout ─── */
@media (min-width: 769px) {
  .listing-table--single thead { display: none; }

  .listing-table--single tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 3px 0;
  }

  .listing-table--single tbody tr:hover {
    background: rgba(27,66,132,.03) !important;
  }

  .listing-table--single tbody td {
    border-bottom: none;
    /* padding: 3px 0; */
    text-align: left;
    white-space: nowrap;
    color: #000 !important;
    line-height: 1;
    padding:0;
  }

  .listing-table--single tbody tr::after {
    content: '';
    width: 100%;
    order: 5;
    margin: 3px 0;
  }

  /* ── Line 1: No + Title + Date ── */
  .listing-table--single .td-no {
    order: 1;
    margin-right: 14px;
    font-size: 13px;
    color: var(--gray-600) !important;
  }
  .listing-table--single .td-no span{
    display: inline-block;
    vertical-align: middle;
  }
  .listing-table--single .td-no span::before {
    content: '매물번호 : ';
    font-weight: 600;
  }

  .listing-table--single td:nth-child(4) {
    order: 2;
    flex: 1;
    max-width: calc(100% - 300px) !important;
    overflow: visible !important;
    text-overflow: unset !important;
    white-space: normal !important;
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
  }

  .listing-table--single td:nth-child(10) {
    order: 3;
    display: inline-flex !important;
    align-items: center;
    margin-left: auto;
    font-size: 13px;
    padding-left: 16px;
  }
  .listing-table--single td:nth-child(10)::before {
    content: '등록일 : ';
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 2px;
  }

  /* ── Line 2: 지역 → 분류 → 원생 → 보증금 → 임대료 → 면적 → 권리금 ── */
  .listing-table--single td:nth-child(3) {
    order: 10;
    font-size: 13px;
    color: #2d6bc4 !important;
    font-weight: 700;
  }

  .listing-table--single td:nth-child(2) {
    order: 11;
    margin-left: 10px;
    border-left: 1px solid var(--gray-200) !important;
    padding-left: 10px !important;
    color: #2d6bc4 !important;
    font-weight: 700;
  }

  .listing-table--single td:nth-child(8) {
    order: 12;
    font-size: 13px;
    border-left: 1px solid var(--gray-200) !important;
    padding-left: 10px !important;
    margin-left: 10px;
  }
  .listing-table--single td:nth-child(8)::before {
    content: '원생 ';
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 3px;
  }

  .listing-table--single td:nth-child(6) {
    order: 13;
    font-size: 13px;
    border-left: 1px solid var(--gray-200) !important;
    padding-left: 10px !important;
    margin-left: 10px;
  }
  .listing-table--single td:nth-child(6)::before {
    content: '보증금 ';
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 3px;
  }

  .listing-table--single td:nth-child(7) {
    order: 14;
    font-size: 13px;
    border-left: 1px solid var(--gray-200) !important;
    padding-left: 10px !important;
    margin-left: 10px;
  }
  .listing-table--single td:nth-child(7)::before {
    content: '임대료 ';
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 3px;
  }

  .listing-table--single td:nth-child(5) {
    order: 15;
    display: inline-flex !important;
    font-size: 13px;
    border-left: 1px solid var(--gray-200) !important;
    padding-left: 10px !important;
    margin-left: 10px;
  }
  .listing-table--single td:nth-child(5)::before {
    content: '면적 ';
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 3px;
  }

  .listing-table--single td:nth-child(9) {
    order: 16;
    margin-left: auto;
    font-weight: 800 !important;
    font-size: 17px;
  }
  .listing-table--single td:nth-child(9)::before {
    content: '권리금 ';
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 4px;
  }
}

@media (max-width: 768px) {
  .board-toolbar { flex-wrap: wrap; }
  .board-toolbar .btn-write { order: 0; }
  .board-toolbar__search { order: 1; width: 100%; }
  .board-toolbar__search select { flex: 1; }
  .board-toolbar__search input { flex: 2; width: auto; }
  .board-toolbar__search button { padding: 0 8px; }
  .inner { padding: 0 16px; }
  .hero{/* background-image: url(/assets/images/m_hero_bg.png); */background-position: right top 30%;}
  .hero__content {padding: 17px 0 32px;}
  .hero__title { font-size: 24px; }
  .hero__desc { font-size: 14px; margin-bottom: 20px; }
  .hero__badge { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
  .quick-bar {}
  .quick-bar__cs { padding: 16px; gap: 12px; }
  .quick-bar__cs-label { font-size: 18px; letter-spacing: 1px; }
  .quick-bar__cs-tel { font-size: 18px; }
  .quick-bar__cs-sub { font-size: 13px; }
  .quick-bar__cs-icon { width: 44px; height: 44px; }
  .quick-bar__cs-icon svg { width: 44px; height: 44px; }
  .quick-bar__item {padding: 0  12px;height: 69px;gap: 4px;aspect-ratio: unset;width: calc(100%  / 3);}
  .quick-bar__icon {/* width: 48px; *//* height: 48px; */width: 53px;/* height: calc(100% - 26px); */}
  .quick-bar__icon svg { width: 40px; height: 40px; }
  .quick-bar__label {font-size: 12px;line-height: 16px;}
  .quick-bar__menu {gap: 0px;padding: 16px 12px;padding: 15px 0;justify-content: space-between;gap: 11px 0;flex-wrap: wrap;}
  .product-slider { padding: 0; }
  .product-swiper { overflow: visible; }
  .section--best { overflow: hidden; }
  .slider-arrow { display: none; }
  .product-card__thumb {/* height: 100px; */}
  .product-card__body {padding: 7px 14px 14px;}
  .product-card__title { font-size: 15px; }
  .product-card__price {font-size: 17px;line-height: 1;}
  .product-card__row {font-size: 12px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;display: block;}
  .product-card__row strong {min-width: unset;}
  .product-card__row:first-child strong{/* display:none; */}
  .listing-search__top { flex-wrap: wrap; }
  .listing-search__top .listing-search__select { min-width: calc(50% - 4px); }
  .listing-search__input {width: calc(100% - 46px);}
  .listing-search { padding: 12px; }
  .listing-search__region-row { flex-wrap: wrap; }
  .listing-search__region-row .listing-search__select { min-width: calc(50% - 24px); }
  .listing-table-wrap { border: none; border-radius: 0; overflow: visible; }
  .listing-table { display: block; }
  .listing-table thead { display: none; }
  .listing-table tbody {display: flex;flex-direction: column;gap: 8px;width: 100%;}
  .listing-table--single tbody tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 8px;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
  }
  .listing-table--single tbody tr:hover { border-color: var(--primary); background: var(--primary-light); }
  .listing-table--single td {
    display: inline-flex !important;
    padding: 0 !important;
    text-align: left !important;
    border: none !important;
    white-space: normal !important;
    align-items: center;
  }
  .listing-table--single .td-no {
    font-size: 11px !important;
    color: var(--gray-600) !important;
    font-weight: 600 !important;
    order: 0;
  }
  .listing-table--single .td-no span::before{
    content: '매물번호:';
    margin-right: 4px;
  }
  .listing-table--single td:nth-child(4) {
    order: 4;
    font-size: 14px !important;
    color: #000 !important;
    font-weight: 600 !important;
    /* margin: 0; */
    margin:4px 0
  }
  .listing-table--single .td-title a{
    display:block;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: unset;
    
    }
  .listing-table--single td:nth-child(2) {
    order: 2;
    font-size: 12px !important;
    color: #2d6bc4 !important;
    font-weight: 700;
  }
  .listing-table--single td:nth-child(2)::before {
    content: '/';
    margin-right: 4px;
    color: var(--gray-300);
    margin-left: -4px;
  }
  .listing-table--single td:nth-child(3){
    order: 1;
    font-weight: 700;
    color: #2d6bc4;
  }
  .listing-table--single tbody tr::before {
    content: '';
    width: 100%;
    order: 4;
  }
  .listing-table--single td:nth-child(6) {
    order: 5;
    font-size: 13px !important;
    color: var(--gray-700) !important;
    font-weight: 600 !important;
  }
  .listing-table--single td:nth-child(6)::before {
    content: '보증금';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .listing-table--single td:nth-child(7) {
    order: 6;
    font-size: 13px !important;
    color: var(--gray-700) !important;
    font-weight: 600 !important;
  }
  .listing-table--single td:nth-child(7)::before {
    content: '임대료';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .listing-table--single tbody tr::after {
    content: '';
    width: 100%;
    order: 7;
  }
  .listing-table--single td:nth-child(5) {
    order: 8;
    font-size: 13px !important;
    color: var(--gray-700) !important;
    font-weight: 600 !important;
  }
  .listing-table--single td:nth-child(5)::before {
    content: '면적';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .listing-table--single td:nth-child(8) {
    order: 9;
    font-size: 13px !important;
    color: var(--gray-700) !important;
    font-weight: 600 !important;
    /* margin-left: 10px; */
  }
  .listing-table--single td:nth-child(8)::before {
    content: '원생';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .listing-table--single .td-price {
    order: 10;
    margin-left: auto;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #000 !important;
  }
    .listing-table--single .td-price::before {
    content: '권리금';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .listing-table--single .td-title {
    width: 100%;
    order: 11;
    font-size: 13px !important;
    font-weight: 500 !important;
    max-width: none !important;
    color: var(--gray-500) !important;
    display: block !important;
    margin: 4px;
  }
  .listing-table--single td:nth-child(10) { display: none !important; }
  .listing-table--single .td-call {
    display: block !important;
    position: absolute;
    right: 12px;
    top: 7px;
    padding: 0 !important;
    border: none !important;
  }
  .listing-table--single .td-call a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    box-sizing: border-box;
    padding: 3px;
  }
  .listing-table--single .td-call a svg{width:100%;display:block;}
  .listing-table--single tbody tr {position: relative;/* padding-right: 56px !important; */width: 100%;}
  .bottom-banner { flex-direction: row;flex-wrap: wrap; }
  .banner-card {padding: 24px 20px;width: 100%;}
  .banner-card--partner{
    padding:0 !important;
    width: calc(50% - 8px);
  }
  .banner-card__title { font-size: 16px; }
  .partner-card__company { font-size: 18px; }
  .section {padding: 40px 0;}
  .section--best { padding: 24px 0; }
  .section__title { font-size: 20px; }
  .section--best .section__title {font-size: 17px;}
  .section__header { margin-bottom: 20px; }
  .footer-cs .inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-cs__btns { margin-left: 0; }
  .footer-cs__tel { font-size: 22px; }
  .footer-cs__tel a:nth-child(2){display: inline-block;}
  .footer-info .inner { flex-direction: column; }
  .footer-info__text { font-size: 12px; }
  .page-header { padding: 32px 0 28px; }
  .page-header__title { font-size: 22px; }
  .sub-content {padding: 12px 0 60px;overflow-x: hidden;}
  .sub-page-title {font-size: 18px;margin-bottom: 0;padding-bottom: 0;border: 0;}
  .step-grid--4, .step-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .step-card { padding: 20px 16px; }
  .step-section__title { font-size: 17px; }
  .info-card__header { padding: 16px 18px; font-size: 16px; }
  .info-card__body { padding: 18px; }
  .info-table th, .info-table td { display: block; width: 100%; padding: 8px 16px; }
  .info-table th { border-bottom: none; padding-bottom: 2px; }
  .map-wrap { height: 280px; }
  .form-group { flex-direction: column; gap: 6px; }
  .form-label { width: 100%; padding-top: 0; }
  .form-actions {flex-direction: column;padding-top: 0;}
  .form-actions .btn-submit,
  .form-actions .btn-cancel { width: 100%; text-align: center; }
  .board-table th:nth-child(1),
  .board-table td:nth-child(1),
  .board-table th:nth-child(3),
  .board-table td:nth-child(3),
  .board-table th:nth-child(5),
  .board-table td:nth-child(5) { display: none; }
  .board-table th, .board-table td { padding: 10px 8px; font-size: 13px; }
  .board-table--buyer th:nth-child(3),
  .board-table--buyer td:nth-child(3) { display: table-cell; }
  .board-table--buyer { table-layout: auto; }
  .board-table--buyer td.td-left { white-space: normal; word-break: keep-all; }
  .board-table--buyer .badge { background: none; padding: 0; font-size: inherit; color: inherit; font-weight: 400; }
  .board-view__header {padding: 16px 0;}
  .board-view__title { font-size: 16px; margin-bottom: 8px; }
  .board-view__meta { flex-wrap: wrap; gap: 6px 12px; font-size: 12px; }
  .board-view__body {padding: 20px 0;font-size: 13px;line-height: 1.7;min-height: 120px;}
  .board-view__file { padding: 12px 14px; font-size: 12px; }
  .board-view__nav-item { padding: 10px 14px; font-size: 13px; gap: 8px; }
  .board-view__nav-label { min-width: 44px; font-size: 12px; }
  .board-view__actions{
    margin-top: 15px;
  }
  .board-view__actions .btn-submit, .board-view__actions .btn-cancel{
    padding:8px 15px;
    font-size: 13px;
    line-height: 1.2em;
  }
  .form-tbl {display: block;border-radius: 0;border: 0;}
  .form-tbl tbody {display:block;}
  .form-tbl tr {
    display: grid;
    grid-template-columns: 85px 1fr;
    border: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .form-tbl tr:last-child { border-bottom: none; }
  .form-tbl th,
  .form-tbl td {border-bottom: none;border-right: none;display: block;padding: 0;}
  .form-tbl th {white-space: normal;margin-bottom: 7px;}
  .form-tbl th .th-sub{word-break:keep-all}
  .form-tbl th .th-sub br{display:none;}
  .form-tbl .form-tbl__section,
  .form-tbl .form-tbl__notice,
  .form-tbl .form-tbl__notice-black {grid-column: 1 / -1;padding: 8px 10px;border-radius: 6px;}
  .form-tbl td[colspan="4"] {
    border-radius: 8px;
    padding: 10px;
}
  .form-tbl__notice-black,
  .form-tbl__notice{padding:0 !important;margin:7px 0 12px;border-radius:0 !important;}
  .form-tbl .phone-group {width: 100%;gap: 3px;}
  .form-tbl .inline-pair {
    width: 100%;
    font-size: 13px;
    white-space: nowrap;
}
  .form-tbl .inline-pair + .inline-pair { margin-left: 0; margin-top: 4px; }
  .form-tbl .input--md,
  .form-tbl .input--lg { width: 100%; }
  .form-tbl select {max-width: 100%;width: 100%;padding: 0 6px;}
  .prop-tbl { display: block; }
  .prop-tbl tbody {display: block;width: 100%;}
  .prop-tbl tr {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
  }
  .prop-tbl tr:last-child {border-bottom: none;flex-wrap: wrap;}
  .prop-tbl th,
  .prop-tbl td { border-bottom: none; display: block; }
  .prop-tbl th {border-right: 1px solid var(--gray-200);padding: 10px 6px;font-size: 12px;width: 75px;white-space: unset;}
  .prop-tbl td {padding: 10px 6px;font-size: 12px;border-right: none;width: calc(50% - 80px);}
  .prop-tbl__status{font-size:12px}
  .prop-tbl td+th{border-left: 1px solid var(--gray-200);}
  .prop-tbl tr:has(td[colspan]) { grid-template-columns: 1fr; }
  .prop-tbl tr:has(td[colspan]) th { display: none; }
  .prop-tbl tr:has(td[colspan]) td {padding: 14px 12px;width: 100%;}
  .prop-tbl__contact { }
  .prop-tbl__contact th {border-right: 1px solid rgba(255,255,255,.2) !important;width: 120px;}
  .prop-tbl__contact td+th{border-left:0}
  .prop-tbl__contact th:nth-child(3),
  .prop-tbl__contact td:nth-child(4){
    border-top:1px solid var(--gray-200)
  }
  .prop-tbl__contact td{width:calc(100% - 120px)}
}
@media (max-width: 420px) {
  .hero__content {}
  .hero__title { font-size: 20px; }
  .hero__desc { font-size: 13px; line-height: 1.6; }
  .quick-bar {}
  .quick-bar__cs { flex-direction: column; align-items: flex-start; gap: 4px; padding: 14px 12px; }
  .quick-bar__cs-label { font-size: 16px; }
  .quick-bar__cs-tel { font-size: 16px; }
  .quick-bar__menu {}
  .quick-bar__item { padding: 8px 6px; }
  .quick-bar__icon {/* width: 40px; *//* height: 40px; */}
  .quick-bar__icon svg { width: 34px; height: 34px; }
  .quick-bar__label {}
  .listing-side__header { margin-bottom: 10px; padding-bottom: 8px; }
  .listing-side__title { font-size: 15px; }
  .mini-card { padding: 7px 10px; }
  .mini-card__heading { font-size: 13px; }
  .mini-card__title { font-size: 12px; }
  .mini-card__info {}
  .listing-table--single tbody tr {padding: 10px 12px;}
  .listing-table--single .td-title { font-size: 13px !important; }
  .listing-table--single .td-price {/* font-size: 13px !important; */}
  .listing-table--single .td-price::before{
    content:'권리금: ';
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    margin-right: 4px;
  }
  .banner-card { padding: 20px 16px; }
  .banner-card__title { font-size: 15px; }
  .partner-card__company { font-size: 16px; }
  .partner-card__contacts p { font-size: 13px; }
  .section {/* padding: 32px 0; */}
  .section__header {align-items: flex-start;gap: 8px;margin-bottom: 8px;}
  .faq-grid { grid-template-columns: 1fr; }
  .step-grid--4, .step-grid--3 { grid-template-columns: 1fr; }
  .step-section { margin-bottom: 32px; }
  .step-section__title { font-size: 16px; }
  .company-greeting{font-size:14px;word-break:keep-all;}
  .company-greeting br{display:none;}
  .step-card__num {width: 70px;height: 32px;font-size: 11px;margin-bottom: 10px;border-radius: 7px;}
  .step-card__title { font-size: 14px; }
.step-card__title br{display:none;}
  .footer-cs__tel { font-size: 20px; }
  .footer-info__text { font-size: 11px; }
  .footer-info__copy { font-size: 11px; }
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  max-height: 100dvh;
  background: var(--white);
  z-index: 200;
  box-shadow: var(--shadow-lg);
  transition: right .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
}
.mobile-nav.is-open { right: 0; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
  flex-direction: row-reverse;
}
.mobile-nav__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}
.mobile-nav__close:hover { background: var(--gray-100); }
.mobile-nav__header .header-top__naver {
  flex: 1;
  height: 28px;
}
.mobile-nav__item {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__item:hover { color: var(--primary); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.mobile-nav__divider { border-top: 1px solid #eee; margin: 16px 0; padding-top: 16px; }
.mobile-overlay.is-open { opacity: 1; visibility: visible; }
.banner-card--image {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.banner-card--image a { display: block; }
.banner-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  width: 90%;
  max-width: 920px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(30px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d6bc4 100%);
  border-radius: 16px 16px 0 0;
}
.modal__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal__title::before,
.modal__title::after {
  content: '▪';
  font-size: 10px;
  opacity: .5;
}
.modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,.15); color: var(--white); }
.modal__body { padding: 32px; }
.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.region-card {
  background: linear-gradient(145deg, #fef9c3 0%, #fde68a 100%);
  border-radius: 10px;
  padding: 20px 14px 18px;
  text-align: center;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  border: 1px solid rgba(253,230,138,.5);
  position: relative;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
}
.region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(253,230,138,.5);
}
.region-card:hover::before { opacity: 1; }
.region-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-card__area {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.6;
  word-break: keep-all;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .region-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .modal { width: 95%; max-height: 80vh; }
  .modal__header { padding: 20px 20px 18px; }
  .modal__title { font-size: 18px; }
  .modal__body { padding: 16px; }
  .region-card { padding: 16px 10px 14px; }
  .region-card__title { font-size: 13px; min-height: 36px; }
  .region-card__area { font-size: 11px; min-height: 36px; }
}
@media (max-width: 420px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .region-card { padding: 14px 8px 12px; }
  .region-card__title { font-size: 12px; min-height: 32px; }
  .region-card__area { font-size: 10px; min-height: 32px; }
}
.ico-recommend {
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  margin-right: 3px;
  color: #e53e3e;
  fill: #e53e3e;
  animation: blink-recommend 1s ease-in-out infinite;
}
@keyframes blink-recommend {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}
