/* 미니홈 공통 스타일 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
  color: #333;
  font-size:14px; 
  font-weight:400;
  letter-spacing:-0.03em;
}
a {text-decoration: none; color: inherit;}
img {max-width: 100%; height: auto; display: block;}

/* ----- header ----- */
/* header {
  background: #111; width:100%; height:100px; padding:0 30px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header_logo a {display:block; width:220px;}
#gnb {}
#gnb ul {text-align:center;}
#gnb ul li {display:inline-block;}
#gnb ul li a {display:block; color:#fff; font-size:16px; font-weight:500; padding:20px 15px;}
header .header_icon {}
header .header_icon ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: end;
    align-items: anchor-center;
}
header .header_icon ul li {margin:0 0 0 30px;}
header .header_icon ul li a {display:inline-block; width:25px; height:25px; vertical-align: middle;}
header .header_icon ul li.hicon_profile {}
header .header_icon ul li.hicon_profile a {width:35px; height:35px;display:flex; align-items: center; gap:8px;}
header .header_icon ul li.hicon_profile a img:last-child {width:12px; height:auto;} */

/* 푸터 - 메인 페이지와 동일 */
/* footer {
    background: #111;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding:3% 5%;
    border-top:1px solid #333;
}
footer .footer_left {}
footer .footer_left .ftl_a {width:210px;}
footer .footer_left .ftl_b {font-size:16px; color:#ddd;  margin:20px 0; line-height:140%;}
footer .footer_left .ftl_c {font-size:14px; color:#777; line-height:160%;}
footer .footer_left .ftl_c p {}
footer .footer_left .ftl_c p a {color:#777; margin:0 15px 0 0;}
footer .footer_right {}
footer .footer_right h5 {color:#aaa; font-size:20px; margin:0 0 15px;}
footer .footer_right table th {color:#aaa; padding:6px 0; text-align:left; }
footer .footer_right table td {color:#aaa; padding:6px 10px;} */



/* 헤더 */
/* .minihome-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  max-height: 50px;
}

.header-logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--primary-color, #FF69B4);
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 0.5rem 1rem;
  outline: none;
  width: 200px;
}

.search-box button {
  border: none;
  background: var(--primary-color, #FF69B4);
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
} */


/* iOS/WKWebView final override: prevent focus zoom on mobile minihome forms. */
@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  select,
  textarea,
  [contenteditable="true"] {
    font-size: 16px !important;
  }
}
