/**
 * Блок «Наші філіали» (§1.7).
 */
.section-branches .branch-card {
	height: 100%;
}

.section-branches .branch-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid #e8e6e0;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.section-branches .branch-card-link:hover {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.section-branches .branch-card-image {
	margin: 0;
	aspect-ratio: 16 / 9;
	background: #f5f4f0;
	overflow: hidden;
}

.section-branches .branch-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.section-branches .branch-card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
}

.section-branches .branch-card-title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	color: #111;
}

.section-branches .branch-card-address {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.section-branches .branch-card-meta {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	color: #444;
}

.section-branches .branch-card-meta li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.section-branches .branch-card-meta .icon {
	font-size: 14px;
	color: #a4763e;
}

@media (max-width: 767px) {
	.section-branches .branch-card-title {
		font-size: 16px;
	}
}
