/* w-about-main 전용 */
body {
	width: 100%;
	overflow-x: hidden;
}
.about-banner {
	max-width: 100%;
	width: 100%;
	height: 320px;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 32px;
	font-weight: 700;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	text-align: center;
}
.about-main-banner {
	display: inline-flex;
	height: 320px;
	padding: 0 54px 0 55px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}
.about-top, .about-middle, .about-bottom, .containerbox {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.containerbox {
	padding: 0 20px;
	max-width: 390px;
}
.about-top {
	display: flex;
	max-width: 350px;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--Spacing-xxl, 32px);
	margin-top: 40px;
	margin-bottom: 80px;
}
.about-middle {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: var(--Spacing-xxxl, 40px);
}
.middle-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--Spacing-xl, 24px);
	align-self: stretch;
	text-align: center;
}
.about-bottom {
	margin-top: 100px;
	margin-bottom: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--Spacing-xl, 24px);
	text-align: center;
}
.link-button {
	max-width: 270px;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #EF4044;
	color: white;
	font-size: 16px;
	border-radius: 8px;
	transition: background-color 0.3s;
	text-decoration: none;
}
@media (min-width: 768px) {
	.containerbox {
		max-width: 1072px;
	}
	.about-top {
		width: 100%;
		max-width: 1072px;
		flex-direction: row;
		display: flex;
		gap: var(--Spacing-xs, 8px);
		margin-top: 80px;
		margin-bottom: 100px;
		justify-content: space-around;
	}
	.about-middle {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		width: 100%;
		gap: 8px;
	}
	.middle-item {
		width: 372px;
	}
	.about-bottom {
		margin-top: 118px;
	}
}
