/* About Us page – all content from ACF */

.about-page-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 32px 20px 48px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #333;
}

/* Page header & breadcrumb */
.about-page-header {
	margin-bottom: 32px;
	border-bottom: 1px solid #e8f0f8;
	padding-bottom: 16px;
}

.about-page-title {
	font-size: 36px;
	font-weight: 700;
	color: #1e5a8a;
	letter-spacing: 0.02em;
	margin: 0 0 8px 0;
}

.about-breadcrumb {
	font-size: 14px;
	color: #5a8ab0;
}

.about-breadcrumb a {
	color: #5a8ab0;
	text-decoration: none;
}

.about-breadcrumb a:hover {
	color: #1e5a8a;
}

.about-breadcrumb .breadcrumb-sep {
	margin: 0 6px;
	opacity: 0.8;
}

.about-breadcrumb .breadcrumb-current {
	color: #2c2c2c;
	font-weight: 500;
}

/* Main section: features left, image right */
.about-main-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
	margin-bottom: 40px;
}

@media (max-width: 900px) {
	.about-main-section {
		grid-template-columns: 1fr;
	}
	.about-main-image-wrap {
		order: -1;
	}
}

/* Features column */
.about-features {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-feature-block {
	text-align: center;
	padding: 20px 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 1px solid #eee;
}

.about-feature-icon-wrap {
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-feature-icon {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.about-feature-heading {
	font-size: 18px;
	font-weight: 700;
	color: #1e5a8a;
	margin: 0 0 8px 0;
	letter-spacing: 0.02em;
}

.about-feature-desc {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	margin: 0;
}

/* Main image */
.about-main-image-wrap {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-main-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-main-image-placeholder {
	aspect-ratio: 4/3;
	background: #f0f4f8;
	color: #888;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	font-size: 14px;
}

/* Text section */
.about-text-section {
	margin-bottom: 40px;
}

.about-text-block {
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.65;
	color: #444;
}

.about-text-block p:first-child {
	margin-top: 0;
}

.about-text-block p:last-child {
	margin-bottom: 0;
}

.about-closing {
	font-size: 15px;
	line-height: 1.65;
	color: #444;
	font-weight: 500;
	margin: 16px 0 0 0;
}

/* CTA buttons */
.about-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s, background-color 0.2s;
}

.about-btn:hover {
	opacity: 0.9;
}

.about-btn-catalog {
	background: #e8e0d5;
	color: #1e5a8a;
}

.about-btn-catalog:hover {
	background: #ddd5c9;
}

.about-btn-contact {
	background: #1f2734;
	color: #fff;
}

.about-btn-contact:hover {
	background: #2a3548;
}

.about-btn-arrow {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
