/* 스타공인중개사사무소 - www.starest.kr */
/* Real Estate 7 스타일 참고: 깔끔한 부동산 랜딩, 섹션 번호, 여백 중심 */

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-text: #1a1a1a;
  --color-text-muted: #5c5c5c;
  --color-accent: #0d3b66;
  --color-accent-light: #1a4d7a;
  --color-border: #e8e8e8;
  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --contain: min(1200px, 100% - 48px);
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#skipToContent {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}
#skipToContent a:focus {
  position: fixed;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius);
  z-index: 99999;
}

.contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 993px) {
  .contain {
    padding: 0 48px;
  }
}
@media (max-width: 480px) {
  .contain {
    padding: 0 16px;
  }
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0);
  transition: background var(--transition), box-shadow var(--transition);
}

#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

#header:not(.scrolled) {
  background: transparent;
}
#header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--color-border);
}

#header:not(.scrolled) .sitelogo a,
#header:not(.scrolled) .gnb a {
  color: #fff;
}
#header.scrolled .sitelogo a,
#header.scrolled .gnb a {
  color: var(--color-text);
}

/* 매물지도 페이지에서는 항상 스크롤된 상태처럼 헤더를 고정 표시 */
body.page-map #header {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--color-border);
}
body.page-map #header .sitelogo a,
body.page-map #header .gnb a {
  color: var(--color-text);
}

.sitelogo a {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sitelogo {
  margin-right: auto; /* 항상 좌측 정렬 */
}

/* 매물지도 페이지: 헤더 내용을 브라우저 전체 폭으로 펼쳐서
   창을 넓혀도 로고가 항상 화면의 좌측에 붙어 보이도록 처리 */
body.page-map #header .header-inner.contain {
  max-width: 100%;
  margin: 0;
  padding-left: 32px; /* 왼쪽에서 약간 띄움 */
  padding-right: 16px;
}
@media (min-width: 768px) {
  .sitelogo a {
    font-size: 1.25rem;
  }
}

.gnb ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (min-width: 993px) {
  .gnb ul {
    gap: 36px;
  }
}

.gnb a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity var(--transition);
}
.gnb a:hover {
  opacity: 0.8;
}
.nav-cta {
  padding: 8px 18px;
  background: var(--color-accent);
  color: #fff !important;
  border-radius: 6px;
}
#header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.2);
  color: #fff !important;
}
#header.scrolled .nav-cta:hover {
  background: var(--color-accent-light);
  opacity: 1;
}

.btn-m-menu {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
.btn-m-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

/* Mobile nav */
.mobile-navigation {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-text);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 80px 28px 28px;
  overflow-y: auto;
}
.mobile-navigation.active {
  transform: translateX(0);
}

.mobile-nav-inner {
  position: relative;
}
.mobile-home {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.mobile-navigation .nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-navigation .nav-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}
.mobile-navigation .close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1050;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .gnb {
    display: none;
  }
  .btn-m-menu {
    display: flex;
  }
  .mobile-navigation {
    display: block;
  }
  #header .header-inner {
    height: 64px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3b66 0%, #1a4d7a 40%, #2d6a9f 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero-title {
    margin-bottom: 24px;
  }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.95;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  min-height: 48px;
}
.btn-primary {
  background: #fff;
  color: var(--color-accent);
  border: none;
}
.btn-primary:hover {
  background: #f0f6fc;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ===== SECTIONS COMMON ===== */
.sec {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .sec {
    padding: 56px 0;
  }
}

.sec-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 20px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 993px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .about-visual {
    order: 0;
  }
  .about-content {
    order: 1;
  }
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.about-content .sec-title {
  margin-bottom: 24px;
}
.about-content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.about-content .btn {
  background: var(--color-accent);
  color: #fff;
}
.about-content .btn:hover {
  background: var(--color-accent-light);
  color: #fff;
}

@media (max-width: 992px) {
  .about-visual {
    order: -1;
  }
  .about-img {
    max-height: 320px;
  }
}

/* ===== WHY ===== */
.why {
  background: var(--color-bg-alt);
}

.why .sec-title {
  text-align: center;
  margin-bottom: 48px;
}
.why .sec-label {
  text-align: center;
}

.why-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.why-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.why-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--color-accent);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.cta-strip .sec-title,
.cta-strip h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-strip p {
  opacity: 0.9;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.cta-strip .btn-primary {
  background: #fff;
  color: var(--color-accent);
}
.cta-strip .btn-primary:hover {
  background: #f0f6fc;
}

/* ===== CONTACT ===== */
.contact-sec {
  padding: 0;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
@media (min-width: 993px) {
  .contact-wrap {
    flex-direction: row;
    min-height: 75vh;
  }
}

.contact-info {
  flex: 0 0 auto;
  background: var(--color-bg-alt);
  padding: 48px 0;
}
@media (min-width: 993px) {
  .contact-info {
    width: 360px;
    flex: 0 0 360px;
    padding: 64px 0;
  }
}

.contact-inner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text);
}
.contact-phone-block {
  margin-bottom: 20px;
}
.contact-phone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}
.contact-phone-block .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.contact-phone-block .value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}
.contact-call-actions {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}
.icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.icon-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.contact-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.contact-list {
  margin-bottom: 24px;
}
.contact-list li {
  margin-bottom: 14px;
}
.contact-list .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.contact-list .value {
  font-size: 1rem;
  color: var(--color-text);
}
.contact-list .value a:hover {
  text-decoration: underline;
}

.snsbox {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.snsbox a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-border);
  border-radius: 50%;
  transition: background var(--transition);
}
.snsbox a:hover {
  background: var(--color-accent);
  color: #fff;
}

.contact-map {
  flex: 1;
  min-height: 360px;
  position: relative;
  background: #e0e4e8;
}
/* 모바일: 지도 영역 높이를 명시해 레이아웃/지도 렌더링이 깨지지 않도록 함 */
@media (max-width: 992px) {
  .contact-map {
    height: 360px;
    min-height: 360px;
    flex: 0 0 360px;
  }
}
@media (min-width: 993px) {
  .contact-map {
    min-height: auto;
  }
}

.contact-map-lock-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/* 잠금 시 스크롤/터치가 지도로 전달되지 않도록 (앱 세부내역서 미니지도 참고) */
.contact-map-lock-wrap--locked #map,
.contact-map-lock-wrap--locked #map * {
  pointer-events: none !important;
}
.contact-map-lock-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.contact-map-lock-btn:hover {
  background: #fff;
  border-color: var(--color-accent);
}
.contact-map-lock-btn:active {
  transform: scale(0.96);
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
}
@media (max-width: 992px) {
  #map {
    min-height: 360px;
  }
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 24px;
  text-align: center;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
}
#footer a {
  color: inherit;
}
#footer a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    padding: 24px 0;
    font-size: 0.85rem;
  }
}

/* ===== 서브페이지 공통 ===== */
.page-about #header.scrolled .gnb .active a,
.page-about #header .gnb .active a,
.page-contact #header.scrolled .gnb .active a,
.page-contact #header .gnb .active a {
  opacity: 1;
  font-weight: 600;
}

/* Page Hero - 소개 페이지 상단 */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #0d3b66 0%, #1a4d7a 100%);
  color: #fff;
  text-align: center;
}
.page-hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.95;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
}

/* Page Intro - 단일 문단 */
.contain-narrow {
  max-width: 720px;
}
.page-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  text-align: center;
}

/* Page Section - 2단 (텍스트 + 이미지) */
.page-section-alt {
  background: var(--color-bg-alt);
}
.page-section-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 993px) {
  .page-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.page-section-grid-reverse .page-section-content {
  order: 2;
}
.page-section-grid-reverse .page-section-visual {
  order: 1;
}
.page-section-content .sec-title-sub {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.4;
}
.page-section-content p:not(.sec-title-sub) {
  color: var(--color-text-muted);
  line-height: 1.75;
}
.page-section-visual {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-border);
}
.page-section-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.page-section-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #e8eef4 0%, #d4dce4 100%);
}

/* About Features - 6칸 그리드 */
.about-features {
  background: var(--color-bg-alt);
}
.about-features-intro {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.about-features-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 600px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) {
  .about-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.about-feature-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.about-feature-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== 연락처 페이지 (contact.html) - 4칸 카드 ===== */
.contact-page-cards .sec-title {
  margin-bottom: 40px;
}
.contact-cards-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 600px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (min-width: 993px) {
  .contact-cards-grid {
    gap: 32px;
  }
}
.contact-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.contact-card-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1;
}
.contact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}
.contact-card p a {
  color: inherit;
}
.contact-card p a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ===== 매물지도 페이지 (map.html) - 상단바 제외 전체 지도 ===== */
body.page-map {
  overflow: hidden;
}
body.page-map #container {
  height: 100vh;
  padding-top: 72px; /* 헤더 높이만큼 아래에서 시작 */
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body.page-map #container {
    padding-top: 64px;
  }
}
.page-map .map-full {
  height: calc(100vh - 72px);
}
@media (max-width: 768px) {
  .page-map .map-full {
    height: calc(100vh - 64px);
  }
}
.page-map .contact-map {
  position: relative;
  height: 100%;
  min-height: 0;
  flex: none;
}
.page-map .contact-map-lock-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.page-map #map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}


/* 매물 마커 & 인포윈도우 */
.map-property-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2d82ff; /* 블루 계열 */
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

.map-property-info {
  min-width: 180px;
  max-width: 260px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  font-family: var(--font-sans);
}
.map-property-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}
.map-property-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e03131;
  margin-bottom: 4px;
}
.map-property-address,
.map-property-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
