/**
 * blocks/about/about.css — Főoldal RÓLUNK + ALAPELVEK (a bundle .about szekciója).
 * Stúdió-strip (kép + szöveg + statok) és az identitás-mondat + 4 alapelv (2×2).
 */

.about {
	max-width: var(--container); margin: 0 auto;
	padding: 0 var(--gutter) var(--space-9);
	display: flex; flex-direction: column; gap: 64px;
}

/* --- Stúdió strip --- */
.studio { display: grid; grid-template-columns: 0.85fr 1fr; gap: var(--space-9); align-items: center; }
.wp-block-image.studio__img { display: block; margin: 0; }
.studio__img .mph { width: 100%; aspect-ratio: 4 / 5; }
.studio__img img { width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.studio__eyebrow {
	display: flex; align-items: center; gap: 9px; margin: 0 0 var(--space-5);
	font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--fg-muted);
}
.studio__eyebrow::before { content: ""; width: 11px; height: 11px; flex: none; display: inline-block; background: var(--ink); }
.studio__title {
	margin: 0 0 var(--space-5); font-family: var(--font-display); font-weight: var(--w-bold);
	font-size: var(--text-3xl); line-height: 1.02; letter-spacing: -0.025em;
}
.studio__lead {
	font-family: var(--font-body); font-weight: var(--w-light); font-size: var(--text-lg);
	line-height: 1.6; color: var(--fg-muted); margin: 0 0 var(--space-7); max-width: 46ch;
}
.studio__stats {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); width: 50%;
	border-top: 2px solid var(--ink); padding-top: var(--space-5);
}
.studio__stat { display: flex; flex-direction: column; gap: 6px; }
.studio__stat-n { font-family: var(--font-display); font-weight: var(--w-bold); font-size: var(--text-2xl); letter-spacing: -0.02em; color: var(--ink); }
.studio__stat-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

/* --- Identitás-mondat + alapelvek (2×2) --- */
.identity { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.identity__lead {
	margin: 0; max-width: 24ch; font-family: var(--font-display); font-weight: var(--w-medium);
	font-size: clamp(1.5rem, 0.9rem + 2.1vw, 2.2rem); line-height: 1.2;
	letter-spacing: -0.015em; color: var(--ink); text-wrap: balance;
}
.identity__principles {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-6);
}
/* A színes négyzet ::before pseudo-elem (a natív blokk-markupban nincs külön span) */
.principle { display: flex; align-items: center; gap: 12px; }
.principle::before { content: ""; width: 14px; height: 14px; flex: none; display: block; background: var(--ink); }
.principle--red::before { background: var(--red); }
.principle--blue::before { background: var(--blue); }
.principle--yellow::before { background: var(--yellow); }
.principle--ink::before { background: var(--ink); }
.principle__name {
	font-family: var(--font-display); font-weight: var(--w-semi); font-size: var(--text-base);
	letter-spacing: -0.01em; color: var(--ink); line-height: 1.1;
}

@media (max-width: 860px) {
	.studio { grid-template-columns: 1fr; gap: var(--space-7); }
}
@media (max-width: 760px) {
	.about { padding-bottom: var(--space-8); }
	.studio__stats { gap: var(--space-4); }
	.identity { display: none; } /* alapelvek + identitás-mondat mobilon rejtve (a bundle szerint) */
}
