/* 상세 화면의 고정 헤더(fragments/item-header.html) — 진료과 PC 헤더와 같은 85px, 스크롤하면 60px. 1068px 이하는 header-mobile-bar.css 가 맡는다 */
.ih { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: #fff; border-bottom: 1px solid #eee; }
.ih-row { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 96px); height: 85px; display: flex; align-items: center; gap: 40px; transition: height .25s; }
.ih-logo { display: flex; align-items: center; width: 300px; height: 85px; transition: width .25s, height .25s; }   /* 진료과 PC 헤더의 로고 상자와 같다 */
.ih-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.ih.scrolled .ih-row { height: 60px; }
.ih.scrolled .ih-logo { width: 212px; height: 60px; }

/* 피부과 서랍(전체 메뉴)의 반투명 검정 덮개는 상세에서 안 보인다. 자리는 남겨 바깥을 누르면 닫히는 것은 그대로다 */
.ih ~ .hamburger-overlay { background: none; }

/* 오른쪽 — 로그인·언어·전체 메뉴. 크기는 진료과 PC 헤더의 유틸 영역과 같다 */
.ih-right { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.ih-account { display: flex; list-style: none; padding: 0; margin: 0; }
.ih-account li { display: flex; align-items: center; }
.ih-account li:first-child::after { content: ''; width: 1px; height: 18px; background: #999; margin: 0 15px; }
.ih-account a { font-size: 16px; color: #000; text-decoration: none; }
.ih-account a:hover { color: #6d28d9; }
.ih-langs { display: flex; align-items: center; gap: 5px; height: 31px; list-style: none; padding: 0; margin: 0; }
.ih-langs img { width: 49px; height: 31px; display: block; }
.ih-langs a:hover img { filter: brightness(.9); }
.ih-menu { width: 17px; height: 15px; padding: 0; border: 0; background: none; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.ih-menu i { display: block; width: 100%; height: 2px; background: #222; }
