@import url(style_set.less);

// 인트로
.sec_intro {
		.content {
				background-image: url(../img/sub/work/bg.png);
		}
}

.sec_1 {
		.sec_tit {
				display: flex;
				justify-content: space-between;
				gap: 1.6rem;
				@media @tab_s {
						flex-direction: column;
				}
		}
		.btn_box {
				justify-content: flex-start;
				align-items: center;
				.btn_line {
						padding: 0 2rem;
						display: flex;
						align-items: center;
						justify-content: center;
						&:after {
								content: "\F30A";
								color: @color_main;
								font-family: "bootstrap-icons" !important;
								margin-top: 0.2rem;
								margin-left: 1rem;
						}
						&:hover {
								&:after {
										color: @color_white;
								}
						}
				}
				@media @tab_s {
						.btn_line {
								width: 100%;
								justify-content: center;
						}
				}
		}
		.item {
				margin-top: 8rem;
				.tit {
						margin-bottom: 1.6rem;
				}
				.desc {
						display: grid;
						grid-template-columns: 18rem 18rem auto;
						align-items: center;
						line-height: 6rem;
						.txt {
								border-top: 1px solid @color_lightgray;
								padding: 0 1rem;
								&:not(:last-child) {
										text-align: center;
										border-right: 1px solid @color_lightgray;
								}
						}
						@media @tab {
								grid-template-columns: 12rem 12rem auto;
						}
						@media @mobile_l {
								grid-template-columns: repeat(2, 1fr);
								grid-template-rows: 1fr 1fr;
								line-height: 3.2rem;
								border-top: 1px solid @color_gray;
								.txt {
										border-top: none !important;
										text-align: left !important;
										padding-left: 1rem;
										&:last-child {
												grid-column: 1 / span 2;
										}
								}
								.txt_cut {
										-webkit-line-clamp: 2;
										line-height: 1.2;
								}
						}
				}
				.hd {
						text-align: center;
						border-top: 2px solid @color_black;
						.txt {
								border-top: none;
						}
				}
		}
}
