/**
 * About Feature Section - Two-column: image left, title + text right (left-aligned)
 * Section width ~80% centered. Image can be portrait/vertical.
 */

.about-feature {
	padding: 10px 24px 0;
	background-color: #fff;
}

.about-feature__wrap {
	width: 100%;
	max-width: 85%;
	margin-left: auto;
	margin-right: auto;
}

.about-feature__inner {
	display: grid;
	gap: 32px;
	align-items: center;
}

@media (min-width: 768px) {
	.about-feature__inner {
		gap: 40px;
	}
}

@media (min-width: 1024px) {
	.about-feature__inner {
		grid-template-columns: 1fr 1fr;
		gap: 48px 56px;
	}
}

.about-feature__media {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-feature__image {
	width: 100%;
	max-width: 400px;
	height: auto;
	display: block;
	object-fit: cover;
	background-color: #f5f5f5;
}

@media (min-width: 1024px) {
	.about-feature__image {
		max-width: 100%;
	}
}

.about-feature__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: left;
}

@media (min-width: 768px) {
	.about-feature__content {
		gap: 20px;
	}
}

.about-feature__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 22px;
	font-weight: 600;
	line-height: normal;
	color: #000;
	font-style: normal;
	margin: 0;
	text-transform: capitalize;
}

@media (min-width: 768px) {
	.about-feature__title {
		font-size: 32px;
	}
}

.about-feature__text {
	font-family: Nunito, Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #444;
	margin: 0;
	text-align: left;
}

.about-feature__text p {
	margin: 0 0 1em;
	text-align: left;
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.about-feature__text p:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.about-feature__text {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.about-feature__wrap {
		max-width: 100%;
		padding: 0;
	}
}
