@charset "utf-8";
/* -------------------------------
   건강똑똑 모바일 헤더 m_header.css
-------------------------------- */

.m-header {
  position: relative;
  z-index: 100;
  background-color: var(--white);  
}

.m-header__inner {
  display: flex;
  flex-direction: column;
  gap:0px; 
  align-items: flex-start;
}
.m-header__inner .m-header__top {
	display: flex;
  flex-direction: row;
	width: 100%;
  gap:0px; 	
	justify-content: space-between;
  height: 60px;
  padding: 12px 16px;
}
.m-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  height: 29px;
  font-weight: var(--fw-500);
  font-size: 24px;
  line-height: 29px;
}

.m-brand__logo {
  inline-size: 28px;
  block-size: 28px;
}

.m-call {
  display: inline-grid;
  place-items: center;
  inline-size: 36px;
  block-size: 36px;
}

.m-call img {
  inline-size: 36px;
  block-size: 36px;
}



/*---------------- gnb 부분 시작 ( main 사용 )--------------- */
.m-gnb-holder {
  position: sticky;
  top: 0px;        
  z-index: 999;
}
.m-gnb-wrap {
 position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  scrollbar-width: none;            
  -webkit-overflow-scrolling: touch;
	background-color: var(--white);
	border-bottom: 1px solid var(--grey-e9);
}
.m-gnb-wrap::-webkit-scrollbar {
  display: none;                   
}

.m-gnb {
   display: inline-flex;             
  flex-wrap: nowrap;
  min-width: max-content;           
  height: 49px;
}

.m-gnb a {
  flex: 0 0 auto;                   
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 49px;
  font-weight: var(--fw-600);
  font-size: 18px;
  color: var(--text);
}
.m-gnb a.is-active {
  color: var(--primary);
	font-weight: var(--fw-700); 
}

/* 오른쪽 그라데이션  */
.m-gnb-fade-right {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 45px;
  height: 49px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 66.95%);
}
/* 왼쪽 그라데이션 */
.m-gnb-fade-left {
  content: "";
	opacity: 0;
  position: absolute;
  top: 1px;
  left: 0;
  width: 45px;
  height: 49px;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 66.95% );
}


