/* feature-cta 左寄せ modifier */
.feature-cta.feature-cta--left {
	justify-content: flex-start;
}

/* About Section */
.about-section {
	padding: 60px 0 80px;
	background: #fff;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: content-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

/* Left column: label + heading */
.about-left {
	flex-shrink: 0;
}

.about-heading {
	font-size: 23px;
	font-weight: 700;
	color: #313131;
	line-height: 1.2;
	margin: 0 0 8px;
}

.about-label {
	font-family: 'Marcellus', serif;
	font-size: 16px;
	font-weight: 400;
	color: #999999;
	letter-spacing: -0.00625em;
	line-height: 1.25;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.about-label::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 2px;
	background: #E51F1F;
	border-radius: 2px;
	flex-shrink: 0;
}

/* Right column: description texts */
.about-right {
	max-width: 675px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.about-text {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: #313131;
	text-align: left;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.about-section {
		padding: 48px 0;
	}

	.about-container {
		flex-direction: column;
		gap: 24px;
	}

	.about-right {
		max-width: 100%;
	}
}
