:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --muted:#6b7280;
  --text:#0f172a;
  --line:#e5e7eb;
  --line-dark:#d1d5db;
  --soft:#f3f4f6;
  --primary:#111827;
  --shadow-soft:0 8px 24px rgba(15,23,42,.06);
}

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

body.rhCareBody{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Apple SD Gothic Neo,Noto Sans KR,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.srOnly{
  position:absolute !important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(229,231,235,.9);
}

.topbarMain{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:74px;
  padding:12px 16px;
}

.brandGroup{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
  min-width:0;
}

.brandSymbol{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:hidden;
  flex:0 0 auto;
}

.brandSymbol img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.brandSub{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:auto;
  padding:0;
  border-radius:0;
  background:transparent;
  color:#0f172a;
  font-size:21px;
  font-weight:950;
  letter-spacing:-0.05em;
  line-height:1;
  white-space:nowrap;
  border:0;
  box-shadow:none;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.topSearch{
  flex:1 1 auto;
  max-width:460px;
  display:flex;
  align-items:center;
  gap:8px;
}

.topSearch input{
  flex:1;
  height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:0 16px;
  outline:none;
}

.topSearch input:focus{
  border-color:#9ca3af;
  box-shadow:0 0 0 3px rgba(17,24,39,.06);
}

.topSearch button{
  height:44px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  cursor:pointer;
  font-weight:800;
  white-space:nowrap;
}

.topActions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
}

.topBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  border:0;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  white-space:nowrap;
  cursor:pointer;
}

.topBtnGhost{
  background:#fff;
  color:#111827;
  border:1px solid var(--line);
}

.userMenuWrap{
  position:relative;
}

.userMenuBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height:44px;
  padding:0 14px 0 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:#111827;
  font-weight:800;
  cursor:pointer;
}

.userMenuBtn[aria-expanded="true"]{
  border-color:#111827;
  box-shadow:0 8px 24px rgba(15,23,42,.08);
}

.userMenuName{
  max-width:120px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.userMenuCaret{
  font-size:12px;
  color:#6b7280;
}

.userDropdown{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:164px;
  padding:8px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 18px 36px rgba(15,23,42,.12);
}

.userDropdown a{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:0 12px;
  border-radius:12px;
  color:#111827;
  font-weight:700;
}

.userDropdown a:hover{
  background:#f3f4f6;
}

.topbarNav{
  border-top:1px solid rgba(229,231,235,.75);
  background:rgba(255,255,255,.92);
}

.topbarNavIn{
  min-height:56px;
  display:flex;
  align-items:center;
  padding:0 16px;
}

.subNav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.subNavLink{
  display:inline-flex;
  align-items:center;
  height:40px;
  padding:0 14px;
  border-radius:12px;
  color:#4b5563;
  font-weight:800;
  white-space:nowrap;
}

.subNavLink:hover{
  background:#f3f4f6;
  color:#111827;
}

.subNavLink.isOn{
  background:#111827;
  color:#fff;
}

.main{
  padding:18px 16px 40px;
}

.hero{
  background:radial-gradient(1000px 500px at 0% 0%, #1f2a44 0%, #0b1220 60%, #07101f 100%);
  color:#fff;
  border-radius:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 40px rgba(15,23,42,.14);
}

.hero h1{
  margin:0 0 6px;
  font-size:22px;
}

.hero p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.heroMetaRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.heroMetaChip{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.hero .filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.select{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  min-width:180px;
}

.select label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}

.select select{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  font-size:14px;
}

.select input,
.select textarea{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  font-size:14px;
  font-family:inherit;
}

.section{
  margin-top:18px;
}

.sectionTitle{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.sectionTitle h2{
  margin:0;
  font-size:16px;
}

.sectionTitle .hint{
  font-size:12px;
  color:var(--muted);
}

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

.catGrid{
  grid-template-columns:repeat(5,1fr);
}

.card{
  display:block;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 18px rgba(17,24,39,.04);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(17,24,39,.08);
  border-color:#d7dce3;
}

.cardImg{
  height:140px;
  background:var(--soft);
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.cardImgCover{
  position:relative;
  overflow:hidden;
  background:#e5e7eb;
}

.cardImgCover::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(15,23,42,.12), rgba(15,23,42,0));
  pointer-events:none;
}

.card:hover .cardImgCover img{
  transform:scale(1.03);
}

.cardImgCover img{
  transition:transform .35s ease;
}

.imgPh{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.cardBody{
  padding:12px;
}

.catCard .cardBody{
  padding:13px 12px 14px;
}

.cardTitle{
  font-weight:800;
  margin-bottom:4px;
}

.cardMeta{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}

.catCard .cardMeta{
  margin-bottom:0;
}

.cardTags{
  font-size:12px;
  color:#111827;
}

.cardStats{
  margin-top:8px;
  font-size:12px;
  color:#2563eb;
  font-weight:700;
}

.kv{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  color:#111827;
}

.shopTop{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:14px;
  margin-top:14px;
}

.shopImg{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}

.shopImg img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.shopImg .imgPh{
  height:260px;
}

.shopInfo{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}

.shopInfo h1{
  margin:0 0 6px;
  font-size:20px;
}

.shopInfo .meta{
  color:var(--muted);
  font-size:13px;
}

.ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.ctas > .btn,
.ctas > .btnPrimary,
.ctas > .btnGhost,
.ctas > button.btn{
  flex:0 0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  font-size:13px;
}

.btnPrimary{
  background:#111827;
  color:#fff;
  border-color:#111827;
}

.btnGhost{
  background:#fff;
}

.box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  margin-top:14px;
}

.box h3{
  margin:0 0 10px;
  font-size:15px;
}

.muted{
  color:var(--muted);
  font-size:13px;
}

.fieldLabel{
  display:block;
  margin-bottom:6px;
}

.alertBox{
  padding:12px;
  border-radius:12px;
  font-weight:800;
}

.alertBox.isSuccess{
  border:1px solid #bbf7d0;
  background:#ecfdf5;
  color:#166534;
}

.alertBox.isError{
  border:1px solid #fecaca;
  background:#fff1f2;
  color:#991b1b;
}

.formStack{
  display:grid;
  gap:12px;
  margin-top:12px;
}

.formGrid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.inputFull{
  width:100%;
}

.textareaControl{
  width:100%;
  resize:vertical;
}

.selectCompact{
  min-width:unset;
  width:220px;
}

.formNote{
  margin-top:10px;
}

.page-content{
  font-size:15px;
  line-height:1.9;
  color:#111827;
  word-break:break-word;
}

.page-content > :first-child{
  margin-top:0;
}

.page-content > :last-child{
  margin-bottom:0;
}

.page-content p{
  margin:0 0 1em;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4{
  margin:1.3em 0 .6em;
  line-height:1.35;
  color:#0f172a;
}

.page-content ul,
.page-content ol{
  margin:.4em 0 1em 1.2em;
  padding:0;
}

.page-content li{
  margin:.35em 0;
}

.page-content blockquote{
  margin:1em 0;
  padding:14px 16px;
  border-left:4px solid #111827;
  background:#f8fafc;
  border-radius:12px;
  color:#334155;
}

.page-content strong{
  font-weight:900;
}

.page-content table{
  width:100%;
  border-collapse:collapse;
  margin:1em 0;
}

.page-content th,
.page-content td{
  border:1px solid var(--line);
  padding:10px 12px;
  text-align:left;
  font-size:14px;
}

.page-content img{
  border-radius:14px;
  margin:1em 0;
}

.contentBlock{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  margin-top:14px;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.contentBlock.isAnswer{
  border-color:#dbeafe;
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contentBlock.isReview{
  border-color:#e5e7eb;
}

.contentBlockHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.contentBlockLabel{
  font-size:15px;
  font-weight:900;
  color:#111827;
}

.contentBlockState{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
  font-size:12px;
  font-weight:800;
}

.emptyState{
  padding:6px 0;
}

.emptyStateTitle{
  font-size:15px;
  font-weight:900;
  color:#111827;
  margin-bottom:6px;
}

.infoTable{
  display:grid;
  gap:10px;
}

.infoRow{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:12px;
  padding:10px 0;
  border-top:1px solid var(--line);
}

.infoRow:first-child{
  border-top:0;
  padding-top:0;
}

.infoKey{
  font-size:13px;
  font-weight:800;
  color:#111827;
}

.infoVal{
  font-size:14px;
  color:#111827;
  word-break:break-word;
}

.infoVal a{
  color:#2563eb;
}

.sectionLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.galleryItem{
  display:block;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.galleryItem img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.sectionSplit{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.miniList{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.miniListItem{
  display:block;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

.miniListItem strong{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.feedList{
  display:grid;
  gap:12px;
}

.feedCard{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feedCard:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
  border-color:#d7dce3;
}

.feedHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.feedTitle{
  font-size:17px;
  font-weight:900;
  line-height:1.45;
  color:#111827;
}

.feedExcerpt{
  margin-top:8px;
  color:#374151;
  font-size:14px;
  line-height:1.75;
}

.feedMeta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin-top:12px;
  color:#6b7280;
  font-size:12px;
}

.feedDate{
  color:#6b7280;
  font-size:12px;
  font-weight:700;
}

.feedStatus{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid transparent;
}

.feedStatus.isDone{
  background:#ecfdf5;
  color:#047857;
  border-color:#bbf7d0;
}

.feedStatus.isWait{
  background:#fff7ed;
  color:#c2410c;
  border-color:#fed7aa;
}

.ratingBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid #fed7aa;
}

.ratingBadgeStars{
  color:#d97706;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
}

.ratingBadgeScore{
  color:#9a3412;
  font-size:12px;
  font-weight:900;
}

.pager{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}

.pagerInfo{
  font-size:13px;
  color:var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  background:#fff;
  padding:18px 0;
  color:var(--muted);
  font-size:12px;
}

@media (max-width:1100px){
  .topbarMain{
    flex-wrap:wrap;
  }
  .topSearch{
    order:3;
    flex:1 1 100%;
    max-width:none;
  }
}

@media (max-width:980px){
  .grid{
    grid-template-columns:repeat(3,1fr);
  }
  .catGrid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:820px){
  .shopTop{
    grid-template-columns:1fr;
  }
  .galleryGrid{
    grid-template-columns:repeat(2,1fr);
  }
  .sectionSplit{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .wrap{
    padding:0 12px;
  }
  .topbarMain{
    gap:12px;
    padding:10px 12px;
    align-items:flex-start;
  }
  .topActions{
    width:100%;
    justify-content:flex-end;
  }
  .topbarNav{
    overflow-x:auto;
  }
  .topbarNavIn{
    min-height:auto;
    padding:10px 12px;
  }
  .subNav{
    flex-wrap:nowrap;
    overflow-x:auto;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
  .subNav::-webkit-scrollbar{
    display:none;
  }
}

@media (max-width:720px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
  .catGrid{
    grid-template-columns:repeat(2,1fr);
  }
  .catGrid .catCard:last-child:nth-child(odd){
    grid-column:1 / -1;
  }
}

@media (max-width:560px){
  .brandSymbol{
    width:42px;
    height:42px;
    border-radius:12px;
  }
  .brandSymbol img{
    width:28px;
    height:28px;
  }
  .brandSub{
    min-height:auto;
    padding:0;
    border-radius:0;
    font-size:20px;
  }
  .topBtn,
  .topBtnGhost,
  .userMenuBtn,
  .topSearch button{
    height:40px;
    border-radius:12px;
  }
  .topSearch input{
    height:40px;
    border-radius:12px;
  }
  .topActions{
    width:100%;
    flex-wrap:wrap;
    gap:8px;
  }
  .topActions > .topBtn,
  .topActions > .topBtnGhost,
  .topActions > .userMenuWrap{
    flex:1 1 calc(50% - 4px);
  }
  .topActions > .topBtn,
  .topActions > .topBtnGhost{
    width:100%;
    justify-content:center;
    padding:0 12px;
  }
  .userMenuWrap{
    width:100%;
  }
  .userMenuBtn{
    width:100%;
    justify-content:center;
  }
  .userMenuName{
    max-width:84px;
  }
  .hero{
    padding:18px 16px;
    border-radius:18px;
  }
  .feedCard,
  .contentBlock,
  .box,
  .shopInfo{
    padding:14px;
    border-radius:16px;
  }
  .shopImg img,
  .shopImg .imgPh{
    height:220px;
  }
  .infoRow{
    grid-template-columns:1fr;
    gap:6px;
  }
  .formGrid2{
    grid-template-columns:1fr;
  }
}

@media (max-width:460px){
  .grid{
    grid-template-columns:1fr;
  }
  .catGrid{
    grid-template-columns:repeat(2,1fr);
  }
  .catGrid .catCard:last-child:nth-child(odd){
    grid-column:1 / -1;
  }
  .galleryGrid{
    grid-template-columns:1fr;
  }
  .feedTitle{
    font-size:16px;
  }
  .page-content{
    font-size:14px;
    line-height:1.85;
  }
}
/* ===== 2026-03-16 mobile header / drawer refresh ===== */
body.mobileMenuOpen{
  overflow:hidden;
}

.topbarMainCompact{
  min-height:66px;
  gap:12px;
}

.topSearchCompact{
  max-width:none;
  min-width:0;
}

.topSearchCompact input{
  min-width:0;
}

.topActionsDesktop{
  display:flex;
}

.mobileMenuBtn{
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#111827;
  cursor:pointer;
  flex:0 0 auto;
}

.mobileMenuBtn span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:#111827;
}

.mobileMenuBackdrop{
  position:fixed;
  inset:0;
  z-index:79;
  background:rgba(15,23,42,.42);
}

.mobileDrawer{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  width:min(86vw, 360px);
  z-index:80;
}

.mobileDrawerInner{
  height:100%;
  display:flex;
  flex-direction:column;
  background:#fff;
  box-shadow:-18px 0 40px rgba(15,23,42,.18);
}

.mobileDrawerHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:64px;
  padding:0 18px;
  border-bottom:1px solid var(--line);
}

.mobileDrawerHead strong{
  font-size:18px;
  font-weight:900;
  letter-spacing:-0.03em;
}

.mobileDrawerClose{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:#111827;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.mobileDrawerNav{
  flex:1 1 auto;
  overflow-y:auto;
  padding:14px 16px 20px;
}

.mobileDrawerAuth,
.mobileDrawerLink{
  display:flex;
  align-items:center;
  min-height:52px;
  padding:0 14px;
  border-radius:14px;
  color:#111827;
  font-weight:800;
}

.mobileDrawerAuth{
  margin-bottom:6px;
  background:#f3f4f6;
}

.mobileDrawerLink.isOn{
  background:#111827;
  color:#fff;
}

.mobileDrawerFoot{
  margin-top:auto;
  padding:16px;
  border-top:1px solid var(--line);
  background:#fff;
}

.mobileApplyBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  border-radius:14px;
  background:#111827;
  color:#fff;
  font-weight:900;
}

@media (max-width:1024px){
  .topbarMainCompact{
    min-height:62px;
    padding:10px 12px;
  }
  .topActionsDesktop{
    display:none;
  }
  .mobileMenuBtn{
    display:inline-flex;
  }
  .topSearchCompact{
    flex:1 1 auto;
    width:auto;
    max-width:none;
  }
  .topSearchCompact button{
    width:44px;
    padding:0;
    font-size:0;
    position:relative;
  }
  .topSearchCompact button::before{
    content:"";
    width:14px;
    height:14px;
    border:2px solid #fff;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-8px;
    margin-top:-8px;
  }
  .topSearchCompact button::after{
    content:"";
    width:7px;
    height:2px;
    background:#fff;
    border-radius:999px;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(4px, 5px) rotate(45deg);
  }
  .topbarNav{
    overflow-x:auto;
  }
  .topbarNavIn{
    min-height:50px;
    padding:8px 12px 10px;
  }
  .subNav{
    flex-wrap:nowrap;
    gap:6px;
    width:100%;
    overflow-x:auto;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
  .subNav::-webkit-scrollbar{display:none;}
  .subNavLink{
    height:36px;
    padding:0 12px;
    border-radius:11px;
    font-size:13px;
    flex:0 0 auto;
  }
}

@media (max-width:760px){
  .topbarMain{
    align-items:center;
  }
  .brandGroup{
    gap:8px;
    min-width:auto;
  }
  .brandSub{
    font-size:19px;
  }
  .topSearchCompact input{
    height:42px;
    padding:0 12px;
    border-radius:12px;
    font-size:14px;
  }
  .topSearchCompact button,
  .mobileMenuBtn{
    height:42px;
    width:42px;
    border-radius:12px;
  }
}

@media (max-width:520px){
  .topbarMainCompact{
    gap:8px;
    padding:8px 10px;
  }
  .brandSymbol{
    width:38px;
    height:38px;
  }
  .brandSymbol img{
    width:24px;
    height:24px;
  }
  .brandSub{
    font-size:17px;
  }
  .topSearchCompact input{
    height:40px;
    padding:0 11px;
    font-size:13px;
  }
  .topSearchCompact button,
  .mobileMenuBtn{
    width:40px;
    height:40px;
  }
  .topbarNavIn{
    padding:7px 10px 9px;
  }
  .subNavLink{
    height:34px;
    padding:0 11px;
    font-size:12px;
  }
  .mobileDrawer{
    width:min(90vw, 340px);
  }
}

/* ===== 2026-03-16 mobile header fix 2 ===== */
@media (max-width:1024px){
  .topbarMainCompact{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
  }
  .brandGroup{
    min-width:0;
    flex:0 0 auto;
  }
  .topSearchCompact{
    grid-column:2;
    min-width:0;
    width:100%;
    order:unset;
  }
  .mobileMenuBtn{
    grid-column:3;
    justify-self:end;
    margin-left:0;
  }
}

.mobileDrawer{
  top:8px;
  right:8px;
  bottom:8px;
  width:min(86vw, 360px);
}

.mobileDrawerInner{
  height:100%;
  max-height:calc(100dvh - 16px);
  border-radius:18px;
  overflow:hidden;
}

.mobileDrawerHead{
  min-height:58px;
  padding:0 16px;
}

.mobileDrawerNav{
  flex:1 1 auto;
  overflow:hidden;
  display:grid;
  align-content:start;
  gap:4px;
  padding:10px 14px 12px;
}

.mobileDrawerAuth,
.mobileDrawerLink{
  min-height:44px;
  padding:0 12px;
  border-radius:12px;
  font-size:15px;
}

.mobileDrawerAuth{
  margin-bottom:0;
}

.mobileDrawerFoot{
  padding:12px 14px 14px;
}

.mobileApplyBtn{
  min-height:46px;
  border-radius:13px;
}

@media (max-width:760px){
  .topbarMainCompact{
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
  }
}

@media (max-width:520px){
  .topbarMainCompact{
    gap:7px;
  }
  .topSearchCompact input{
    padding:0 10px;
  }
  .mobileDrawer{
    top:6px;
    right:6px;
    bottom:6px;
    width:calc(100vw - 12px);
    max-width:340px;
  }
  .mobileDrawerInner{
    max-height:calc(100dvh - 12px);
    border-radius:16px;
  }
  .mobileDrawerHead{
    min-height:54px;
    padding:0 14px;
  }
  .mobileDrawerNav{
    padding:8px 12px 10px;
    gap:3px;
  }
  .mobileDrawerAuth,
  .mobileDrawerLink{
    min-height:42px;
    font-size:14px;
  }
  .mobileDrawerFoot{
    padding:10px 12px 12px;
  }
  .mobileApplyBtn{
    min-height:44px;
  }
}


.rhFooterCustom{
  border-top:1px solid var(--line);
  padding:22px 0 26px;
  background:rgba(255,255,255,.78);
}

.rhFooterNotice{
  margin-bottom:14px;
  line-height:1.65;
  font-size:13px;
}

.rhFooterLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  margin-bottom:14px;
}

.rhFooterLinks a{
  color:#334155;
  font-size:14px;
  font-weight:800;
}

.rhFooterLinks a:hover{
  color:rgba(37,99,235,.95);
  text-decoration:underline;
}

.rhBizInfo{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:8px 18px;
  padding:14px 0;
  border-top:1px solid #e9edf5;
  border-bottom:1px solid #e9edf5;
  color:#64748b;
  font-size:13px;
  line-height:1.7;
}

.rhBizInfo a{
  color:#64748b;
}

.rhBizInfo a:hover{
  color:rgba(37,99,235,.95);
  text-decoration:underline;
}

.rhCopyright{
  padding-top:14px;
  color:#94a3b8;
  font-size:12px;
  font-weight:800;
}

@media (max-width: 820px){
  .rhBizInfo{
    grid-template-columns:1fr;
  }

  .rhFooterLinks{
    gap:8px 14px;
  }
}

.rhFooterCustom .ncContainer{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}