.guide-about {
	padding: 100px 40px;
	margin-bottom: 0;
}

.guide-about__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.guide-about__layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

/* ---- Stats grid layout (left column) ---- */
.guide-about__stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.guide-about__stat {
	padding: 28px;
	background: var(--theme-palette-color-9, #F8F9FA);
	border-radius: 12px;
}

.guide-about__stat-number {
	display: block;
	font-family: var(--fw-font-serif, 'DM Serif Display', Georgia, serif);
	font-size: 2.25rem;
	color: var(--theme-palette-color-3, #1A2A3A);
	font-weight: 400;
	margin-bottom: 4px;
}

.guide-about__stat-label {
	display: block;
	font-size: 0.875rem;
	color: var(--fw-text-secondary, #6B7280);
}

/* ---- Photo layout (left column) ---- */
.guide-about__photo {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid var(--fw-border, #E5E7EB);
}

.guide-about__photo-placeholder {
	width: 100%;
	aspect-ratio: 4/5;
	background: var(--theme-palette-color-9, #F8F9FA);
	border-radius: 10px;
	border: 1px solid var(--fw-border, #E5E7EB);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fw-text-tertiary, #9CA3AF);
	font-size: 0.8rem;
	font-style: italic;
}

/* ---- Text column ---- */
.guide-about__label {
	font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	color: var(--fw-text-tertiary, #9CA3AF);
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 12px;
}

.guide-about__headline {
	font-family: var(--fw-font-serif, 'DM Serif Display', Georgia, serif);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 400;
	margin-bottom: 20px;
	line-height: 1.25;
	color: var(--theme-palette-color-3, #1A2A3A);
}

.guide-about__subtitle {
	font-size: 1.125rem;
	color: var(--theme-palette-color-3, #1A2A3A);
	line-height: 1.65;
	margin-bottom: 24px;
	max-width: 540px;
}

.guide-about__bio-text {
	font-size: 1rem;
	color: var(--fw-text-secondary, #6B7280);
	line-height: 1.7;
	margin-bottom: 16px;
}

/* ---- Read more link ---- */
.guide-about__read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--theme-palette-color-3, #1A2A3A);
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	margin-top: 12px;
	transition: gap 0.2s;
}

.guide-about__read-more:hover {
	gap: 10px;
}

/* ---- Credentials row (image layout only) ---- */
.guide-about__credentials {
	display: flex;
	gap: 24px;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--fw-border, #E5E7EB);
}

.guide-about__credential {
	font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
	font-size: 0.7rem;
	color: var(--fw-text-secondary, #6B7280);
	letter-spacing: 0.02em;
}

.guide-about__credential-num {
	display: block;
	font-family: var(--fw-font-serif, 'DM Serif Display', Georgia, serif);
	font-size: 1.3rem;
	color: var(--theme-palette-color-3, #1A2A3A);
	font-weight: 700;
	margin-bottom: 2px;
}

.guide-about__credential-label {
	display: block;
}

/* ---- Color picker support ---- */
.guide-about.has-text-color .guide-about__label,
.guide-about.has-text-color .guide-about__headline,
.guide-about.has-text-color .guide-about__subtitle,
.guide-about.has-text-color .guide-about__bio-text,
.guide-about.has-text-color .guide-about__read-more,
.guide-about.has-text-color .guide-about__credential-num,
.guide-about.has-text-color .guide-about__credential {
	color: inherit;
}

.guide-about.has-text-color .guide-about__label {
	opacity: 0.55;
}

.guide-about.has-text-color .guide-about__bio-text {
	opacity: 0.75;
}

.guide-about.has-text-color .guide-about__credential {
	opacity: 0.6;
}

.guide-about.has-text-color .guide-about__read-more svg {
	stroke: currentColor;
}

/* Stat cards keep their own color context (have own bg) */
.guide-about.has-text-color .guide-about__stat {
	color: var(--theme-palette-color-3, #1A2A3A);
}

.guide-about.has-text-color .guide-about__credentials {
	border-color: currentColor;
	opacity: 0.2;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.guide-about {
		padding: 64px 20px;
	}

	.guide-about__layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.guide-about--stats .guide-about__left-col {
		order: 2;
	}

	.guide-about__credentials {
		flex-wrap: wrap;
	}
}
