.about-section {
	padding-top: var(--section-spacing);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
}

.about-grid.has-why-panel {
	grid-template-columns: 0.85fr 1.05fr 0.9fr;
	align-items: stretch;
	gap: 40px;
}

.about-image img {
	display: block;
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: var(--corner-radius, var(--radius));
}

.about-grid.has-why-panel .about-image img {
	height: 100%;
	min-height: 460px;
}

.about-grid.has-why-panel .about-content {
	/* Match the why-panel's own top padding so both tags start at the
	   same height, instead of "About Us" sitting higher than
	   "Why Choose Us". */
	padding-top: 40px;
}

.about-content {
	max-width: 650px;
}

.about-content h2 {
	margin: 15px 0 25px;
}

.about-text {
	margin-bottom: 30px;
}

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

/*
=========================================
WHY CHOOSE US PANEL (3rd column of About)
=========================================
*/

.about-why-panel {
	background: var(--dark);
	color: color-mix(in srgb, var(--white) 80%, transparent);
	padding: 40px 34px;
	border-radius: var(--corner-radius, var(--radius));
	display: flex;
	flex-direction: column;
}

.why-panel-heading {
	color: var(--white);
	margin: 0 0 28px;
	font-size: 1.4rem;
}

.why-panel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.why-panel-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.why-panel-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-panel-icon img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.why-panel-text h4 {
	color: var(--white);
	margin: 0 0 4px;
	font-size: 1rem;
}

.why-panel-text div {
	margin: 0;
	font-size: .9rem;
	line-height: 1.5;
}

.why-panel-text p {
	margin: 0;
}

@media (max-width: 991px) {

	.about-grid.has-why-panel {
		grid-template-columns: 1fr 1fr;
	}

	.about-grid.has-why-panel .about-why-panel {
		grid-column: 1 / -1;
	}

	.about-grid.has-why-panel .about-image img {
		height: 380px;
		min-height: 0;
	}

	.about-grid.has-why-panel .about-content {
		/* The panel drops to its own full-width row at this size, so
		   there's nothing beside About to line up with anymore. */
		padding-top: 0;
	}

}

@media (max-width: 767px) {

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-grid.has-why-panel {
		grid-template-columns: 1fr;
	}

	.about-grid.has-why-panel .about-why-panel {
		grid-column: auto;
	}

	.about-image img {
		height: 350px;
	}

}
