:root{
  --bg:#0b1220;
  --bg2:#111a2f;
  --card:#ffffff;
  --line:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
  --primary:#111827;
  --soft:#f8fafc;
  --brand:#1e2f5f;
  --brand2:#0f1b3d;
  --shadow:0 14px 40px rgba(15,23,42,.08);
  --radius:20px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.rhBlogBody{
  background:linear-gradient(180deg,#f8fafc 0%,#eef2f7 100%);
  color:var(--text);
  font:16px/1.6 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans KR",sans-serif;
}
a{color:inherit;text-decoration:none}
img{width:100%;display:block}
button,input,textarea,select{font:inherit}

.rhContainer{
  width:min(1240px, calc(100% - 32px));
  margin:0 auto;
}

.wrap{
  max-width:1240px;
  margin:0 auto;
  padding:24px 16px 60px;
}

/* top */
.rhTop{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(229,231,235,.92);
}
.rhTopRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.rhTopRowMain{
  min-height:74px;
  padding:12px 0;
}
.rhTopRowNav{
  min-height:56px;
}
.rhTopNavBar{
  border-top:1px solid rgba(229,231,235,.78);
  background:rgba(255,255,255,.92);
}
.rhTopBrandGroup{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:0 0 auto;
}
.rhTopSymbol{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}
.rhTopSymbol img{
  width:38px;
  height:38px;
  object-fit:contain;
}
.rhTopSubName{
  display:inline-flex;
  align-items:center;
  height:44px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-0.02em;
  font-size:28px;
  white-space:nowrap;
}
.rhGnb{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.rhGnbLink{
  display:inline-flex;
  align-items:center;
  height:40px;
  padding:0 14px;
  border-radius:12px;
  color:#4b5563;
  font-size:14px;
  font-weight:800;
  transition:.15s ease;
  white-space:nowrap;
}
.rhGnbLink:hover{
  background:#f3f4f6;
  color:#111827;
}
.rhGnbLink.is-on{
  background:#111827;
  color:#fff;
}
.rhTopSearch{
  flex:1 1 auto;
  max-width:460px;
  display:flex;
  align-items:center;
  gap:8px;
}
.rhTopSearch input{
  flex:1;
  height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#111827;
  padding:0 16px;
  outline:none;
}
.rhTopSearch input::placeholder{
  color:#6b7280;
}
.rhTopSearch input:focus{
  border-color:#9ca3af;
  box-shadow:0 0 0 3px rgba(17,24,39,.06);
}
.rhTopSearch button{
  height:44px;
  border:0;
  border-radius:14px;
  padding:0 16px;
  background:#111827;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}
.rhTopActions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
}
.rhNavBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:86px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  background:#111827;
  color:#fff;
  font-size:14px;
  font-weight:800;
  border:0;
  white-space:nowrap;
}
.rhNavBtnGhost{
  background:#fff;
  color:#111827;
  border:1px solid var(--line);
}
.rhUserMenuWrap{
  position:relative;
}
.rhUserMenuBtn{
  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;
}
.rhUserMenuBtn[aria-expanded="true"]{
  border-color:#111827;
  box-shadow:0 8px 24px rgba(15,23,42,.08);
}
.rhUserMenuName{
  max-width:120px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.rhUserMenuCaret{
  font-size:12px;
  color:#6b7280;
}
.rhUserDropdown{
  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);
}
.rhUserDropdown a{
  display:flex;
  align-items:center;
  min-height:42px;
  padding:0 12px;
  border-radius:12px;
  color:#111827;
  font-weight:700;
}
.rhUserDropdown a:hover{
  background:#f3f4f6;
}

/* modal */
.rhModal{
  position:fixed;
  inset:0;
  z-index:200;
  background:rgba(15,23,42,.56);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.rhModal[hidden]{
  display:none !important;
}
.rhModalDialog{
  width:min(680px, 100%);
  background:#fff;
  border-radius:22px;
  padding:26px;
  position:relative;
  box-shadow:0 24px 60px rgba(15,23,42,.24);
}
.rhModalClose{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:24px;
  line-height:1;
}
.rhModalHead{
  margin-bottom:16px;
}
.rhModalTitle{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.3;
}
.rhModalDesc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.rhModalForm{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.rhField{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.rhFieldLabel{
  font-size:14px;
  font-weight:700;
  color:#111827;
}
.rhField input,
.rhField textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  outline:none;
}
.rhField input:focus,
.rhField textarea:focus{
  border-color:#9ca3af;
}
.rhModalActions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  padding-top:4px;
}
.rhBtnDark,
.rhBtnLine{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
}
.rhBtnDark{
  border:0;
  background:#111827;
  color:#fff;
}
.rhBtnLine{
  border:1px solid var(--line);
  background:#fff;
  color:#111827;
}
body.rhModalOpen{
  overflow:hidden;
}

/* hero */
.hero{
  background:
    radial-gradient(circle at top left, #2a417b 0%, rgba(42,65,123,0.0) 36%),
    linear-gradient(135deg,var(--brand) 0%, var(--brand2) 100%);
  color:#fff;
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}
.heroSmall{padding:28px}
.heroInner{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:24px;
  align-items:end;
}
.heroInnerSingle{
  grid-template-columns:1fr;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  letter-spacing:.14em;
  opacity:.78;
  margin-bottom:12px;
}
.hero h1{
  margin:0 0 12px;
  font-size:52px;
  line-height:1.12;
  letter-spacing:-0.03em;
}
.heroDesc{
  margin:0;
  max-width:760px;
  font-size:17px;
  color:rgba(255,255,255,.82);
}
.heroBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  border:0;
  outline:0;
  background:#fff;
  color:#111827;
  padding:0 18px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}
.heroBtn.outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}
.sourceActions,
.postViewActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* common */
.section{margin-top:28px}
.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:12px;
  margin-bottom:14px;
}
.sectionHead h2{
  margin:0;
  font-size:25px;
  line-height:1.2;
}
.muted{color:var(--muted)}

.sourceCard,
.postView,
.relatedBox,
.emptyBox,
.featuredTextCard,
.textPostCard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* featured text cards */
.featuredList{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.featuredTextCard{
  display:block;
  padding:22px;
  transition:.16s ease;
}
.featuredTextCard:hover{
  transform:translateY(-2px);
}
.featuredTitle{
  margin-top:8px;
  font-size:24px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-0.02em;
}
.featuredText{
  margin-top:10px;
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
}

.metaLine{
  display:flex;
  justify-content:space-between;
  gap:8px;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted);
}

/* text post cards */
.textPostGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.textPostCard{
  transition:.16s ease;
}
.textPostCard:hover{
  transform:translateY(-2px);
}
.textPostBody{
  padding:18px 18px 20px;
}
.postTitle{
  display:block;
  margin-top:8px;
  font-size:20px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:-0.02em;
}
.postText{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  min-height:96px;
}
.postActions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btnLine{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:12px;
  background:#f8fafc;
  border:1px solid var(--line);
  font-size:14px;
  font-weight:700;
}

/* source cards */
.sourceGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.sourceCard{
  padding:18px;
  transition:.16s ease;
}
.sourceCard:hover{
  transform:translateY(-2px);
}
.sourceName{
  font-size:18px;
  font-weight:800;
  line-height:1.35;
}
.sourceMeta{
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
}

/* post view */
.postViewWrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
}
.postView{
  padding:24px;
}
.postViewTitle{
  margin:12px 0 0;
  font-size:38px;
  line-height:1.26;
  letter-spacing:-0.03em;
}
.postSummaryBox{
  margin-top:18px;
  padding:20px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid var(--line);
  font-size:16px;
  line-height:1.9;
}
.postBottomInfo{
  margin-top:18px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}
.relatedBox{
  padding:20px;
  align-self:start;
}
.relatedList{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.relatedItem{
  display:block;
  padding:14px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid var(--line);
}
.relatedTitle{
  font-weight:700;
  line-height:1.5;
  margin-bottom:6px;
}

/* pagination / empty / footer */
.pagination{
  margin-top:20px;
  display:flex;
  gap:8px;
  justify-content:center;
  flex-wrap:wrap;
}
.pageBtn{
  min-width:42px;
  height:42px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  font-weight:700;
}
.pageBtn.active{
  background:#111827;
  color:#fff;
  border-color:#111827;
}
.emptyBox{
  padding:32px 20px;
  text-align:center;
  color:var(--muted);
}
.rhFooter{
  padding:30px 0 44px;
}
.rhFooterIn{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}

/* responsive */
@media (max-width: 1180px){
  .rhTopIn{
    grid-template-columns:1fr;
    padding:14px 0;
  }
  .rhTopLeft,
  .rhTopRight{
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .heroInner,
  .postViewWrap{
    grid-template-columns:1fr;
  }
  .textPostGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .featuredList{
    grid-template-columns:1fr;
  }
  .sourceGrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .rhContainer{
    width:min(100% - 24px, 1240px);
  }
  .wrap{
    padding:18px 12px 40px;
  }
  .rhBrandText{
    font-size:20px;
  }
  .rhGnb{
    gap:10px;
  }
  .rhGnbLink{
    font-size:13px;
  }
  .hero{
    padding:22px;
    border-radius:22px;
  }
  .hero h1{
    font-size:34px;
  }
  .textPostGrid,
  .sourceGrid,
  .featuredList{
    grid-template-columns:1fr;
  }
  .postView{
    padding:18px;
  }
  .postViewTitle{
    font-size:30px;
  }
  .rhFooterIn{
    flex-direction:column;
  }
}

.post-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.post-action-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid #dbe2ea;
  background:#fff;
  color:#111827;
  text-decoration:none;
  font-weight:700;
}
.post-action-btn:hover{
  background:#f8fafc;
}
.post-action-btn--primary{
  background:#fff;
  border-color:#111827;

}

/* ===== RSS request / auth top right ===== */
.rhNavBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:98px;
  height:42px;
  padding:0 16px;
  border-radius:14px;
  border:0;
  background:#fff;
  color:#111827;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}
.rhNavBtn:hover{opacity:.96}
.rhNavBtnGhost2{
  background:#555;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}
.rhNavBtnGhost:hover{
  background:rgba(255,255,255,.08);
}
.rhTopRight{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

/* ===== modal ===== */
.rhModalOpen{
  overflow:hidden;
}
.rhModal{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(15,23,42,.54);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.rhModal[hidden]{
  display:none !important;
}
.rhModalDialog{
  width:min(100%, 620px);
  background:#fff;
  border-radius:22px;
  border:1px solid #e5e7eb;
  box-shadow:0 30px 80px rgba(15,23,42,.24);
  padding:24px;
  position:relative;
}
.rhModalClose{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border:0;
  border-radius:12px;
  background:#f3f4f6;
  color:#111827;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}
.rhModalHead{
  margin-bottom:18px;
}
.rhModalTitle{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.2;
  color:#111827;
}
.rhModalDesc{
  margin:0;
  color:#6b7280;
  font-size:14px;
  line-height:1.6;
}
.rhModalForm{
  display:grid;
  gap:14px;
}
.rhField{
  display:grid;
  gap:8px;
}
.rhFieldLabel{
  font-size:14px;
  font-weight:800;
  color:#111827;
}
.rhField input,
.rhField textarea{
  width:100%;
  border:1px solid #dbe3ea;
  border-radius:14px;
  background:#fff;
  color:#111827;
  padding:13px 14px;
  outline:none;
}
.rhField input:focus,
.rhField textarea:focus{
  border-color:#111827;
  box-shadow:0 0 0 3px rgba(17,24,39,.08);
}
.rhField textarea{
  resize:vertical;
  min-height:120px;
}
.rhModalActions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:4px;
}
.rhBtnDark,
.rhBtnLine{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}
.rhBtnDark{
  border:0;
  background:#111827;
  color:#fff;
}
.rhBtnLine{
  border:1px solid #dbe3ea;
  background:#fff;
  color:#111827;
}

/* ===== responsive ===== */
@media (max-width: 980px){
  .rhTopIn{
    grid-template-columns:1fr;
    gap:14px;
    padding:14px 0;
  }
  .rhTopLeft,
  .rhTopRight{
    justify-content:space-between;
  }

}
@media (max-width: 640px){
  .rhTopLeft{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .rhTopRight{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .rhModalDialog{
    padding:20px 16px;
    border-radius:18px;
  }
  .rhModalActions{
    flex-direction:column;
  }
  .rhBtnDark,
  .rhBtnLine{
    width:100%;
  }
}

.rhResultItem.noThumb .rhResultBody{
  width:100%;
}

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

/* ===== desktop/mobile visibility helpers ===== */
.rhTopDesktopOnly{
  display:block;
}
.rhTopDesktopActions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ===== hamburger ===== */
.rhHamburgerBtn{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  flex:0 0 44px;
}
.rhHamburgerBtn span{
  display:block;
  width:18px;
  height:2px;
  border-radius:99px;
  background:#111827;
}

/* ===== mobile drawer ===== */
.rhDrawerBackdrop{
  position:fixed;
  inset:0;
  z-index:210;
  background:rgba(15,23,42,.45);
}
.rhDrawerBackdrop[hidden]{
  display:none !important;
}

.rhMobileDrawer{
  position:fixed;
  inset:0;
  z-index:220;
  pointer-events:none;
}
.rhMobileDrawer[hidden]{
  display:none !important;
}

.rhMobileDrawerPanel{
  margin-left:auto;
  width:min(86vw, 360px);
  height:100%;
  background:#fff;
  box-shadow:-10px 0 40px rgba(15,23,42,.18);
  display:flex;
  flex-direction:column;
  pointer-events:auto;
}

.rhDrawerHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 14px;
  border-bottom:1px solid var(--line);
}
.rhDrawerTitle{
  font-size:18px;
  font-weight:900;
  letter-spacing:-0.02em;
}
.rhDrawerClose{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:#111827;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.rhDrawerBody{
  flex:1 1 auto;
  padding:18px;
  overflow:auto;
}

.rhDrawerAccountBox{
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8fafc;
  margin-bottom:16px;
}
.rhDrawerAccountBoxGuest{
  padding:0;
  border:none;
  background:transparent;
}

.rhDrawerAccountBtn,
.rhDrawerLoginBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:48px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#111827;
  font-weight:800;
  cursor:pointer;
}
.rhDrawerLoginBtn{
  justify-content:center;
  background:#111827;
  border-color:#111827;
  color:#fff;
}
.rhDrawerAccountLabel{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.rhDrawerAccountCaret{
  font-size:12px;
  color:#6b7280;
}
.rhDrawerAccountLinks{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.rhDrawerAccountLinks a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:0 14px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:700;
}

.rhDrawerMenu{
  display:grid;
  gap:8px;
}
.rhDrawerMenuLink{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-size:15px;
  font-weight:800;
}
.rhDrawerMenuLink.is-on{
  border-color:#111827;
  background:#111827;
  color:#fff;
}

.rhDrawerFoot{
  padding:16px 18px 18px;
  border-top:1px solid var(--line);
}
.rhDrawerRssBtn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  background:#555;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}

body.rhDrawerOpen{
  overflow:hidden;
}

/* ===== top layout stability ===== */
.rhTopBrandGroup{
  min-width:0;
}
.rhTopSymbol{
  flex:0 0 46px;
}
.rhTopSearch{
  min-width:0;
}
.rhTopSearch input{
  min-width:0;
}
.rhTopActions{
  flex:0 0 auto;
}

/* ===== mobile header / nav override ===== */
@media (max-width: 860px){
  .rhContainer{
    width:min(100% - 24px, 1240px);
  }

  .rhTopRowMain{
    min-height:0;
    padding:10px 0;
    gap:10px;
  }

  .rhTopBrandGroup{
    gap:8px;
    flex:0 0 auto;
  }

  .rhTopSymbol{
    width:40px;
    height:40px;
    flex-basis:40px;
    border-radius:12px;
  }
  .rhTopSymbol img{
    width:32px;
    height:32px;
  }

  .rhTopSubName{
    height:40px;
    font-size:18px;
  }

  .rhTopSearch{
    flex:1 1 auto;
    max-width:none;
    min-width:0;
    gap:6px;
  }
  .rhTopSearch input{
    height:40px;
    padding:0 12px;
    font-size:14px;
  }
  .rhTopSearch button{
    height:40px;
    padding:0 12px;
    border-radius:12px;
    font-size:13px;
    flex:0 0 auto;
  }

  .rhTopDesktopOnly{
    display:none !important;
  }

  .rhHamburgerBtn{
    display:inline-flex;
  }

  .rhTopActions{
    gap:8px;
  }

  .rhTopRowNav{
    min-height:50px;
    overflow:hidden;
  }

  .rhGnb{
    flex-wrap:nowrap;
    overflow-x:auto;
    width:100%;
    padding:4px 0;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }
  .rhGnb::-webkit-scrollbar{
    display:none;
  }

  .rhGnbLink{
    flex:0 0 auto;
    height:38px;
    padding:0 13px;
    font-size:13px;
  }
}

@media (max-width: 520px){
  .rhMobileDrawerPanel{
    width:min(88vw, 340px);
  }
}