/* =============================================================================
 * LITSLINK BLOCKS — Offices · 3 cols (acf/ll-offices-3col)
 * Self-contained: block-scoped palette, literal font fallback. No global .block-head.
 * Light section, centered header, 3-column office cards:
 * rounded photo (top) / bold city / pin-icon address row / phone-icon phone row.
 * ========================================================================== */
.block-ll-offices-3col {
	--ofc-ink: #010005;
	--ofc-muted: #768297;
	--ofc-body: #374151;
	--ofc-stroke: #e5e7eb;
	--ofc-accent: #1690d3;
	--ofc-card-bg: #ffffff;

	padding: 70px 0;
	background: #f9fafb;
	font-family: var(--ll-font, 'Montserrat', 'Montserrat-fallback', Arial, sans-serif);
	box-sizing: border-box;
}
.block-ll-offices-3col *,
.block-ll-offices-3col *::before,
.block-ll-offices-3col *::after { box-sizing: border-box; }

.block-ll-offices-3col__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------------------------------------------------------------- header -- */
.block-ll-offices-3col__head {
	text-align: center;
	max-width: 780px;
	margin: 0 auto 40px;
}

.block-ll-offices-3col__eyebrow {
	display: block;
	margin-bottom: 15px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ofc-muted);
}

.block-ll-offices-3col__title {
	margin: 0;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.33;
	letter-spacing: -1px;
	color: var(--ofc-ink);
}

.block-ll-offices-3col__subtitle {
	margin: 15px auto 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ofc-body);
	max-width: none;
}

/* ------------------------------------------------------------------ grid -- */
.block-ll-offices-3col__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* ----------------------------------------------------------------- cards -- */
.block-ll-offices-3col__card {
	display: flex;
	flex-direction: column;
	background: var(--ofc-card-bg);
	border: 1px solid var(--ofc-stroke);
	border-radius: 14px;
	overflow: hidden;
}

.block-ll-offices-3col__card-img {
	aspect-ratio: 16 / 9;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--ofc-stroke);
}
.block-ll-offices-3col__card-img.is-empty {
	background: linear-gradient(135deg, #eef1f5 0%, #e2e6ec 100%);
}
.block-ll-offices-3col__card-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block-ll-offices-3col__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}

.block-ll-offices-3col__city {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--ofc-ink);
}

.block-ll-offices-3col__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.block-ll-offices-3col__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ofc-body);
}
.block-ll-offices-3col__row a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}
.block-ll-offices-3col__row a:hover { color: var(--ofc-accent); }

.block-ll-offices-3col__icon {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--ofc-accent);
}

/* ------------------------------------------------------------- responsive -- */
@media (max-width: 1024px) {
	.block-ll-offices-3col__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.block-ll-offices-3col { padding: 56px 0; }
	.block-ll-offices-3col__title { font-size: 30px; }
	.block-ll-offices-3col__grid {
		grid-template-columns: 1fr;
	}
}
