/* Full-bleed breakout — escapes theme content container */
.chamber-411-wrap {
	font-family: inherit;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Constrain the card grid to a readable max-width with padding */
.chamber-411-list {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
}

/* ── Map ─────────────────────────────────────────── */

#chamber-411-map {
	width: 100%;
	height: 400px;
	border-radius: 6px;
	margin-bottom: 28px;
}

/* ── Grid ────────────────────────────────────────── */

.chamber-411-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	padding-top: 28px;
	padding-bottom: 28px;
}

/* ── Entry Card ──────────────────────────────────── */

.chamber-411-entry {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px 22px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.chamber-411-entry .entry-name {
	margin: 0 0 4px;
	font-size: 1.05em;
	font-weight: 700;
	color: #1a202c;
	line-height: 1.3;
}

.chamber-411-entry p {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 6px;
	line-height: 1.5;
}

.chamber-411-entry .entry-icon {
	flex-shrink: 0;
	font-size: 1em;
	margin-top: 1px;
}

/* Phone */

.chamber-411-entry .entry-phone a {
	color: #2b6cb0;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.05em;
}

.chamber-411-entry .entry-phone a:hover {
	text-decoration: underline;
	color: #1a4f8a;
}

/* Address */

.chamber-411-entry .entry-address {
	color: #4a5568;
	font-size: 0.9em;
}

/* Directions Button */

.chamber-411-entry .entry-directions {
	display: inline-block;
	margin-top: 4px;
	background: #2b6cb0;
	color: #fff;
	padding: 7px 14px;
	border-radius: 5px;
	text-decoration: none;
	font-size: 0.85em;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: background 0.15s ease;
	align-self: flex-start;
}

.chamber-411-entry .entry-directions:hover {
	background: #1a4f8a;
	color: #fff;
}

/* ── Empty State ─────────────────────────────────── */

.chamber-411-empty {
	color: #718096;
	font-style: italic;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 480px) {
	.chamber-411-list {
		grid-template-columns: 1fr;
	}
}
