/*
 * Find a Branch directory (fcls_branch archive). No dedicated mockup from
 * Josh for this page — built to match the established design system
 * (page-hero, loan-card patterns) rather than a specific reference file.
 */

.fcls-branch-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.fcls-branch-card {
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.fcls-branch-card .map {
	aspect-ratio: 16/9;
	background: repeating-linear-gradient(45deg, #ececec, #ececec 10px, #f4f4f4 10px, #f4f4f4 20px);
	display: flex; align-items: center; justify-content: center;
	color: var(--gray-600); font-size: 12.5px; text-align: center; padding: 16px;
}
.fcls-branch-card .map iframe { width: 100%; height: 100%; border: 0; display: block; }
.fcls-branch-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.fcls-branch-card h3 { font-size: 19px; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fcls-branch-card .soon-badge {
	font-size: 10.5px; font-weight: 700; color: var(--red); background: #fdeaec;
	padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: .03em;
}
.fcls-branch-card address { font-style: normal; font-size: 13.5px; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }
.fcls-branch-card .nmls { font-size: 12px; color: var(--gray-600); margin-bottom: 18px; }
.fcls-branch-card .lo-count { font-size: 13px; color: var(--charcoal-soft); margin-bottom: 16px; }
.fcls-branch-card .fcls-btn { margin-top: auto; }

@media (max-width: 980px) {
	.fcls-branch-directory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.fcls-branch-directory-grid { grid-template-columns: 1fr; }
}
