/* ==========================================================================
   WritePro Global — Site photography
   ========================================================================== */

.wpg-media-panel {
	margin: 0;
	border-radius: var(--wpg-radius);
	overflow: hidden;
	box-shadow: var(--wpg-shadow-lg);
	border: 1px solid var(--wpg-border);
	background: #ffffff;
}

.wpg-media-panel img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpg-media-panel--tall {
	aspect-ratio: 4 / 5;
	max-height: 520px;
}

.wpg-media-panel--wide {
	aspect-ratio: 16 / 10;
}

.wpg-media-panel--hero-accent {
	aspect-ratio: 3 / 2;
}

/* Homepage — Why section visual */
.wpg-why__aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.wpg-why__visual {
	margin-bottom: 4px;
}

/* About — overview aside */
.wpg-svc-overview__aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* About — mission image */
.wpg-about-mission__visual {
	margin-bottom: 24px;
}

.wpg-about-mission__card .wpg-media-panel {
	margin: -8px 0 20px;
	box-shadow: var(--wpg-shadow);
}

/* Contact — info column visual */
.wpg-contact__visual {
	margin: 24px 0 28px;
}

/* Feature highlight — light split section (replaces photo background band) */
.wpg-feature-band {
	background: linear-gradient(180deg, #f0fafa 0%, #ffffff 100%);
	border-top: 1px solid var(--wpg-border);
	border-bottom: 1px solid var(--wpg-border);
}

.wpg-feature-band__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.wpg-feature-band__content h2 {
	font-family: var(--wpg-font-display);
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	color: #191919;
	margin: 0 0 16px;
	line-height: 1.2;
}

.wpg-feature-band__content p {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--wpg-gray-400);
}

.wpg-feature-band__media {
	max-width: 560px;
	justify-self: end;
	width: 100%;
}

@media (max-width: 1024px) {
	.wpg-feature-band__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.wpg-feature-band__media {
		max-width: 520px;
		justify-self: center;
		order: -1;
	}
}

@media (max-width: 640px) {
	.wpg-feature-band__grid {
		gap: 24px;
	}
}

/* Testimonial avatars */
.wpg-testimonial__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid rgba(29, 122, 133, 0.25);
}

.wpg-testimonial__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wpg-testimonial footer {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Service overview image */
.wpg-svc-overview__visual {
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.wpg-why__aside {
		order: -1;
	}

	.wpg-why__visual {
		max-width: 560px;
		margin: 0 auto 8px;
	}

	.wpg-svc-overview__aside {
		max-width: 480px;
		margin: 0 auto;
	}

	.wpg-about-mission__visual {
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}

	.wpg-contact__visual {
		max-width: 520px;
	}
}
