/* Contact cards — an intro column beside Phone / Email / Office cards.
   Scoped to .b-c-contact-cards. This file is yours to edit; the Lake Builder
   admin manages this block's fields (block.json) but never overwrites it.
   Brand tokens (--brand-*) are available here. */

.lake-root .b-c-contact-cards .cc-row {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.6fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

/* ---- left column: intro lead + contact person ---- */
.lake-root .b-c-contact-cards .cc-lead {
	margin: 0;
	max-width: 34ch;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--brand-body);
}
.lake-root .b-c-contact-cards .cc-lead > :first-child { margin-top: 0; }
.lake-root .b-c-contact-cards .cc-lead > :last-child { margin-bottom: 0; }
.lake-root .b-c-contact-cards .cc-lead strong,
.lake-root .b-c-contact-cards .cc-lead b {
	color: var(--brand-ink);
	font-weight: 700;
}

.lake-root .b-c-contact-cards .cc-person {
	margin-top: 1.75rem;
}
.lake-root .b-c-contact-cards .cc-name {
	margin: 0;
	font-weight: 700;
	color: var(--brand-ink);
}
.lake-root .b-c-contact-cards .cc-role {
	margin: 0.15rem 0 0;
	color: var(--brand-body);
}

/* ---- right column: contact cards ---- */
.lake-root .b-c-contact-cards .cc-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
}
.lake-root .b-c-contact-cards .cc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	padding: clamp(1.75rem, 3vw, 2.5rem) 1.25rem;
	background: #fff;
	border: 1px solid var(--brand-line, #e6e6e6);
	border-radius: var(--brand-radius, 12px);
	box-shadow: 0 1px 2px rgba(20, 28, 33, 0.04), 0 8px 24px rgba(20, 28, 33, 0.05);
}
.lake-root .b-c-contact-cards .cc-card p {
    margin: 0;
}
/* Rounded-square icon badge, brand-tinted. */
.lake-root .b-c-contact-cards .cc-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	color: var(--brand);
	background: color-mix(in srgb, var(--brand, #2c8c84) 12%, #fff);
}
.lake-root .b-c-contact-cards .cc-icon svg {
	width: 22px;
	height: 22px;
}

.lake-root .b-c-contact-cards .cc-title {
	margin: 0;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--brand-ink);
}
.lake-root .b-c-contact-cards .cc-value {
	margin: 0;
	color: var(--brand-body);
	font-size: 1rem;
	line-height: 1.5;
	text-decoration: none;
}
.lake-root .b-c-contact-cards a.cc-value:hover,
.lake-root .b-c-contact-cards a.cc-value:focus-visible {
	color: var(--brand);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.lake-root .b-c-contact-cards .cc-address {
	white-space: normal;
}
.lake-root .b-c-contact-cards .cc-address p {
    margin: 0;
}
.lake-root .b-c-contact-cards .cc-empty {
	color: var(--brand-body);
	opacity: 0.6;
	font-style: italic;
	font-size: 0.9rem;
}

/* ---- responsive ---- */
@media (max-width: 860px) {
	.lake-root .b-c-contact-cards .cc-row {
		grid-template-columns: 1fr;
		gap: 2rem;
		align-items: start;
	}
}
@media (max-width: 560px) {
	.lake-root .b-c-contact-cards .cc-cards {
		grid-template-columns: 1fr;
	}
}
