@charset "utf-8";
/* -------------------------------
   건강똑똑 모바일 푸터 m_footer.css
-------------------------------- */

.m-footer {  
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content:space-between;
    background-color: var(--black);  
	padding: 0 20px;
}

/* 상단 링크 + SNS */
.m-footer__top {
  padding: 24px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
	
}

.m-footer__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 3vw, 20px); 
	white-space: nowrap;
 font-weight: 500;
	font-size: 15px;
	line-height: 140%;
	color: var(--white);
}
.m-footer__links .sep {
  color: var(--grey-d5);
}
.m-footer__corp {
  display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	align-items: center;
  color: var(--grey-91);
	margin-bottom: 20px;
}
.m-footer__corp img {
	inline-size: 83px;
  block-size: 89px;
}
.m-footer__corp p {
  font-weight: var(--fw-400);
	font-size: 14px;
	line-height: 140%;
	text-align: center;
	color: var(--grey-91);
}
.m-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 10px 0 20px;
	border-top:1px solid var(--grey-39);
}

.m-sns img {
  inline-size: 50px;
  block-size: 50px;
}

