.sns-section {
	width: 100%;
	padding: 58px 0 190px;
	background: #fff;
}

.sns-inner {
	position: relative;
	width: 1100px;
	height: 635px;
	margin: 0 auto;
}

/* 하단 배경 */
.sns-bg {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -130px;
	height: 289px;
	background: #082f2e;
}

/* 카드 영역 */
.sns-list {
	position: relative;
	z-index: 2;

	display: flex;
	justify-content: center;
	gap: 25px;
}

/* 개별 SNS */
.sns-item {
	width: 450px;
	text-align: center;
}

/* 카드 */
.sns-card {
	position: relative;
	width: 430px;
	height: 620px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .2);

	transition:
		transform .45s ease,
		box-shadow .45s ease;

	overflow: hidden;
}
.sns-item:hover .sns-card {
	transform: translateY(-12px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

/* 이미지 */
.sns-image {
	position: relative;
	width: 400px;
	height: 620px;
	margin: 28px 0 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* 실제 이미지 */
.youtube-image {
	background-image:
		linear-gradient(
			to bottom,
			rgba(0,0,0,.05),
			rgba(0,0,0,.15)
		),
		url("https://www.prugio.com/asset/images/life/life-img-youtube.png");
}

.instagram-image {
	background-image:
		linear-gradient(
			to bottom,
			rgba(0,0,0,.05),
			rgba(0,0,0,.15)
		),
		url("https://www.prugio.com/asset/images/life/life-img-instagram.png");
}


/* ========================================
   계정명
======================================== */

.sns-account {
	position: absolute;
	top: 14px;
	left: 18px;

	display: flex;
	align-items: center;
	gap: 11px;

	color: #fff;
	font-size: 23px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -1px;
}

.sns-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 43px;
	height: 43px;

	border-radius: 50%;
	background: #fff;
}

/* 유튜브 */
.youtube-icon svg {
	width: 26px;
	height: 26px;
}

.youtube-icon svg path:first-child {
	fill: #f04438;
}

.youtube-icon svg .play {
	fill: #fff;
}

/* 인스타그램 */
.instagram-icon {
	background: linear-gradient(
		135deg,
		#7b2cff,
		#e1306c 50%,
		#f7a43b
	);
}

.instagram-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
}


/* ========================================
   하단 정보 박스
======================================== */

.sns-info {
	position: absolute;
	left: 0;
	bottom: 0;

	width: 155px;
	height: 170px;

	padding: 31px 27px 22px;
	box-sizing: border-box;

	text-align: left;
}

.youtube-info {
	background: #185b5a;
}

.instagram-info {
	background: #000;
}

.sns-info h3 {
	margin: 0;

	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -1px;
}


/* ========================================
   잎사귀 아이콘
======================================== */

.leaf-icon {
	width: 32px;
	height: 38px;
	margin-top: 13px;
	opacity: .4;
}

.leaf-icon img {
	width: 100%;
	height: 100%;
}


/* ========================================
   화살표
======================================== */

.sns-arrow {
	position: absolute;
	left: 27px;
	bottom: 23px;

	display: block;
	width: 54px;
	height: 12px;
}

.sns-arrow span {
	position: absolute;
	left: 0;
	top: 5px;

	width: 51px;
	height: 1px;
	background: rgba(255,255,255,.7);
}

.sns-arrow i {
	position: absolute;
	right: 1px;
	top: 2px;

	width: 6px;
	height: 6px;

	border-top: 1px solid rgba(255,255,255,.7);
	border-right: 1px solid rgba(255,255,255,.7);

	transform: rotate(45deg);
}


/* ========================================
   설명
======================================== */

.sns-desc {
	margin: 32px 0 0;

	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	letter-spacing: -0.6px;
}


@media (max-width: 960px) {

	.sns-section {
		padding: 40px 20px;
	}

	.sns-inner {
		width: 100%;
		height: auto;
	}

	.sns-bg {
		height: 250px;
	}

	.sns-list {
		gap: 20px;
	}

	.sns-item {
		width: calc(50% - 10px);
	}

	.sns-card {
		width: 100%;
		height: auto;
		aspect-ratio: 341 / 490;
	}

	.sns-image {
		width: calc(100% - 30px);
		height: calc(100% - 30px);
		margin: 15px auto 0;
	}

	.sns-account {
		font-size: 19px;
	}

	.sns-info {
		width: 46%;
		height: 35%;
		padding: 22px 20px;
	}

	.sns-info h3 {
		font-size: 17px;
	}

	.sns-desc {
		font-size: 13px;
	}
}


@media (max-width: 640px) {

	.sns-section {
		padding: 30px 15px;
	}

	.sns-bg {
		height: 360px;
	}

	.sns-list {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.sns-item {
		width: 100%;
		max-width: 340px;
	}

	.sns-card {
		height: 490px;
		aspect-ratio: auto;
	}

	.sns-image {
		width: calc(100% - 30px);
		height: 460px;
		margin-top: 15px;
	}

	.sns-account {
		top: 13px;
		left: 15px;
		font-size: 20px;
	}

	.sns-icon {
		width: 38px;
		height: 38px;
	}

	.sns-info {
		width: 155px;
		height: 170px;
		padding: 28px 25px 20px;
	}

	.sns-info h3 {
		font-size: 19px;
	}

	.sns-desc {
		margin-top: 20px;
		font-size: 13px;
	}

	.sns-item:last-child {
		margin-bottom: 20px;
	}
}