/**
 * New Realm Transportation LLC — Why Choose Us Section Styles
 *
 * Left column content, right column 2x3 compact checklist grid.
 *
 * @package NewRealm
 * @since   1.0.0
 */

/* ignoring loop detection */
.why-section {
	background-color: #f8f9fa; /* Light gray background */
	padding: 4.5rem 0;
	color: var(--color-dark);
}

.why-section__grid {
	display: grid;
	grid-template-columns: 1.1fr 1.9fr; /* Content left (compact), grid right (wider) */
	gap: 5rem;
	align-items: center;
}

.why-section__col {
	display: flex;
	flex-direction: column;
}

/* Left Column Content */
.why-section__content {
	padding-right: 1rem;
}

.why-section__eyebrow {
	display: inline-block;
	color: var(--color-maroon);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.why-section__title {
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-dark);
	margin-top: 0;
	margin-bottom: 1.5rem;
	letter-spacing: -0.75px;
}

.why-section__subtext {
	font-size: 1.05rem;
	line-height: 1.5;
	color: rgba(30, 30, 36, 0.7);
	margin: 0;
}

/* Right Column 2x3 Grid */
.why-checklist {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2 columns */
	gap: 2rem 2.5rem; /* Row gap and Column gap */
}

.why-checklist__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.5rem 0;
}

.why-checklist__icon-wrapper {
	color: var(--color-gold); /* Gold checkmarks */
	background-color: rgba(197, 160, 89, 0.1);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.3s ease;
}

.why-checklist__text {
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--color-dark);
	margin: 0;
}

/* Hover effects */
.why-checklist__item:hover .why-checklist__icon-wrapper {
	background-color: var(--color-maroon);
	color: var(--color-white);
	transform: scale(1.05);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (max-width: 1200px) {
	.why-section__grid {
		gap: 3.5rem;
	}
	.why-section__title {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 991px) {
	.why-section {
		padding: 3.5rem 0;
	}
	.why-section__grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	.why-section__content {
		padding-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.why-section {
		padding: 3rem 0;
	}
	.why-section__title {
		font-size: 2.15rem;
		margin-bottom: 1.25rem;
	}
	.why-checklist {
		grid-template-columns: 1fr; /* Stack into 1 column on smaller tablets/mobile */
		gap: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.why-section__title {
		font-size: 1.85rem;
	}
}
