/* 회원 프로필 그리드 CSS Document */

.sec-wrap { /* wrapper */
	width: 100%;
	border-top: 8px solid #EAEDF2;
	padding: 0px 18px;;
	overflow:hidden;
	position: relative;
	box-sizing: border-box;
}
.sec-ttl{ /* 타이틀 */
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #313233;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 16px */
	letter-spacing: -0.2px;
}
.sec-btn{ /* 더보기 */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2px;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
}

/* Grid Design */
.grid-wrap{  }
.grid { 
	margin: 0 auto; padding: 0px; 
}
.grid.g10 {
	width: calc(100% + 10px) !important;
}
.grid-sizer { 
	width: 25%; text-align: center; box-sizing: border-box; padding: 3px; cursor: pointer; opacity: 0; 
}

.grid-item {
	text-align: center; box-sizing: border-box;cursor: pointer; opacity: 0; 
	width: calc(25%); /* 9px 가로 여백 보정: 9px ÷ 4 * 3 = 6.75px */
	margin-bottom: 15px;
	padding-right: 10px;
	float: left;
}

/* 4번째마다 오른쪽 마진 제거 */
.grid-item:nth-child(5), .grid-item:nth-child(9) {
	width: calc(25% - 10px);
	padding-right: 0;
}

.grid-item .pro-img{
	width: 100%;
	padding-bottom: 100%; 
	height: 0;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	border-radius: 8px;
	border: 1px solid #E2E9EC;
	box-sizing: border-box;	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;	
}
.grid-item.animate {
	transition: opacity ease 0.5s;
	opacity: 1;
}
.grid-item--gigante {
	width: 40%;		  	
}	

/* 글상자 */
.grid-item .pro-txt{			
	width: 100%;
	height: 35px;
	display:flex;
	align-items:center;	
	margin: 0; padding: 0px 8px;
	font-size: 13px;
	background: #f8f8f8;
	box-sizing: border-box;
	text-align: left;
}
.grid-item .pro-txt .gen-icon {
    display: inline-block;
    background: url(../../../a5/images/profile-images.png) no-repeat;
    background-size: 60px 30px;
    width: 15px;
    height: 15px;
}
.grid-item .pro-txt .gen-icon.male{ /* 남성 */
	background-position: -15px -15px; /* left top */
}
.grid-item .pro-txt .gen-icon.female{
	background-position: -30px -15px; /* left top */
}
.grid-item .pro-txt .name{
	margin-left: 5px;
	overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}

.grid-item .pro-txt .follow-icon {
	width: 15px; height: 15px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url(//mimo.co.kr/images/icon/mypage/followers.png);
	margin-right: 5px;
}

.grid-item .tags{
	z-index: 100;
	font-family: 'gulim';
	font-weight: bold;
	font-size: 12px;
	text-align: left;
	color: #fff;
	padding: 5px;
	overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}

@media only screen and (max-width: 609px){
	
	/* .sec-wrap{
		margin-top: 10px;
		padding-left: 0px;
		padding-right: 0px;
	}	
	.sec-ttl{
		padding-left: 15px;
	}
	
	.grid-item .pro-img{
		padding-bottom: 100%;
	}
	.grid-item .pro-txt{				
		height: 30%;
		padding: 0px 3px;
	}
	.grid-item .pro-txt .name{
		width: calc(100% - 21px);
		margin-left: 3px;
	}
	.grid-item .tags{
		z-index: 100;
		font-family: 'gulim';
		font-weight: normal;
		font-size: 11px;
	} */
}