/*
 * Area / Area Service template styles.
 * Loaded on is_singular(['area','area_service']) only.
 * Inherits Divi typography from `.et_pb_post .entry-content`.
 */

.area-template {
	margin: 0;
}

.area-template > section {
	padding: 60px 0;
}

.area-template .container {
	max-width: 1080px;
	width: 90%;
	margin: 0 auto;
}

/* ---------- Hero ---------- */

.area-hero {
	background: #fff;
}

.area-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.area-hero__title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	margin: 0 0 20px;
}

.area-hero__copy {
	font-size: 16px;
	line-height: 1.7;
	color: #4a4a4a;
}

.area-hero__copy p:last-child {
	margin-bottom: 0;
}

.area-hero__cta.et_pb_button {
	display: inline-block;
	margin-top: 24px;
}

.area-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* ---------- Body copy ---------- */

.area-body {
	background: #f7f9fb;
}

.area-body__copy {
	font-size: 16px;
	line-height: 1.7;
}

/* ---------- FAQ + photo ---------- */

.area-faq {
	background: #fff;
}

.area-faq__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.area-faq__heading {
	font-size: clamp(24px, 3vw, 32px);
	margin: 0 0 24px;
}

.area-faq__item {
	border-bottom: 1px solid #e5e7eb;
	padding: 14px 0;
}

.area-faq__item[open] .area-faq__question::after {
	transform: rotate(45deg);
}

.area-faq__question {
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.area-faq__question::-webkit-details-marker {
	display: none;
}

.area-faq__question::after {
	content: "+";
	font-size: 20px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.area-faq__answer {
	margin-top: 10px;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.65;
}

.area-faq__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
	.area-template > section {
		padding: 40px 0;
	}

	.area-hero__inner,
	.area-faq__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.area-faq__media {
		order: -1;
	}
}
