/**
 * New Realm Transportation LLC — About Section Styles
 *
 * Two-column split layout with image on the left and typography content on the right.
 *
 * @package NewRealm
 * @since   1.0.0
 */

.about-section {
	background-color: #f9f9fc; /* Premium light off-white background */
	padding: 4.5rem 0;
	color: var(--color-dark);
}

.about-section__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 5rem;
	align-items: center;
}

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

/* Image Column Wrapper */
.about-section__image-wrapper {
	position: relative;
	border-radius: var(--border-radius, 8px);
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	transition: var(--transition-smooth);
}

.about-section__image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	pointer-events: none;
	border-radius: inherit;
}

.about-section__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 520px;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-section__image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-section__image-wrapper:hover .about-section__img {
	transform: scale(1.03);
}

/* Content Column */
.about-section__content {
	padding-left: 1rem;
}

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

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

.about-section__text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: rgba(30, 30, 36, 0.8);
	margin-bottom: 2.5rem;
}

.about-section__actions {
	display: flex;
}

.about-section__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.1rem 2.5rem;
	font-size: 1rem;
	font-weight: 600;
}

.about-section__btn .btn__arrow {
	transition: var(--transition-smooth);
}

.about-section__btn:hover .btn__arrow {
	transform: translateX(4px);
}

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

@media screen and (max-width: 991px) {
	.about-section {
		padding: 5.5rem 0;
	}
	.about-section__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.about-section__content {
		padding-left: 0;
	}
	.about-section__img {
		max-height: 420px;
	}
}

@media screen and (max-width: 768px) {
	.about-section {
		padding: 4.5rem 0;
	}
	.about-section__title {
		font-size: 2.15rem;
		margin-bottom: 1.5rem;
	}
	.about-section__text {
		font-size: 1.05rem;
		line-height: 1.7;
		margin-bottom: 2rem;
	}
	.about-section__btn {
		width: 100%;
		justify-content: center;
	}
}

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