/*
(주)파이브센스_FIVESENSES.Corp.

본 라이브러리(라이브러리 소스코드)는 (주)파이브센스의 자산입니다.
무단으로 외부로 유출 및 일시 반출을 할 경우 손해배상 책임 및 민사/형사적 책임이 있습니다.
*/
.main_sqi9 .main_cont_container.container_fix {
	padding:0 15px;
}

.main_sqi9 .contents_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f6f6f6;
    padding: 30px 0 27px;
	border-radius:5px;
}

.main_sqi9 .content_list {
    width: calc(100% / 3);
    min-width: calc(100% / 3);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    padding: 0 40px;
}

.main_sqi9 .content_list:nth-child(2) {
    border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
}

/* 이미지 */
.main_sqi9 .img_container {
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_sqi9 .img_container img{
    /* width: 100%;
    max-width: 80%; */
	width:fit-content;
}

/* 이미지 배경색 */
.main_sqi9 .content_list .img_container {background: #fff;}

/* 내용 */
.main_sqi9 .info_container {
    flex: 1;
    overflow: hidden;
}

/* 타이틀 */
.main_sqi9 .title_container {
    margin-bottom: 10px;
}

.main_sqi9 .title_container h2 {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

/* 서브타이틀 */
.main_sqi9 .subtitle_container {
    margin-bottom: 0;
}

.main_sqi9 .subtitle_container h3 {
    font-size: 15px;
    font-weight: 400;
    color: #888888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	position:relative;
    line-height: 1.4;
}

.main_sqi9 .subtitle_container h3::after {
	content: ">";
	color: #888888;
	display:block;
	position:absolute;
	right:224px;
	font-family:serif;
	font-weight:800;
	font-size:14px;
	top:0.1px;
}

@media (max-width: 991px) {
	.main_sqi9 .container_fix {
		padding: 0 23px
	}
    .main_sqi9 .contents_wrapper {
        display: block;
        padding: 0 22px;
		border-radius:4px;
    }

    .main_sqi9 .content_list {
        width: 100%;
        min-width: 100%;
        padding: 20px 0;
		gap:16px;
    }

    .main_sqi9 .content_list:nth-child(2) {
        border-left: none;
        border-right: none;
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #e1e1e1;
    }

    /* 이미지 */
    .main_sqi9 .img_container {
        min-width: 53px;
        min-height: 53px;
        max-width: 53px;
        max-height: 53px;
    }

	.main_sqi9 .img_container img {
		width:45%;
		max-height:55%;
		object-fit:contain;
	}

	.main_sqi9 .info_container {
		transform:translateY(3px)
	}

    /* 타이틀 */
	.main_sqi9 .title_container {
		margin-bottom:2px
	}

    .main_sqi9 .title_container h2 {
        font-size: 16px;
    }

    /* 서브타이틀 */
    .main_sqi9 .subtitle_container h3 {
        font-size: 13.5px;
    }

	.main_sqi9 .subtitle_container h3::after {
		font-size:13px;
		top:0px;
		right:210px;
		font-family: 'SUIT';
		font-weight:300;
	}
}