/**
 * Блок reb/contacts-branches (блок 04 страницы «Контакты»).
 * Карточки филиалов: 2 колонки, при третьем филиале - 3 без правок.
 */

.reb-contacts-branches {
	background: var(--reb-bg);
}

.reb-contacts-branches__inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 56px;
	padding-bottom: 56px;
}

.reb-contacts-branches__heading {
	margin: 0;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.reb-contacts-branches__subheading {
	margin: 0 0 14px;
	max-width: 640px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--reb-text-muted);
}

.reb-contacts-branches__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.reb-contacts-branches__card {
	background: #fff;
	border: 1px solid var(--reb-border);
}

/* Фото офиса / мини-карта 604x150. */
.reb-contacts-branches__photo {
	display: block;
	width: 100%;
	aspect-ratio: 604 / 150;
	object-fit: cover;
	background: var(--reb-bg);
}

.reb-contacts-branches__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--reb-border);
	background: repeating-linear-gradient(45deg, var(--reb-bg) 0 14px, #E7EFE9 14px 28px);
	font-family: var(--reb-font-mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--reb-text-faint);
}

.reb-contacts-branches__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 22px;
}

.reb-contacts-branches__title {
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.reb-contacts-branches__city {
	font-size: 20px;
	font-weight: 800;
}

.reb-contacts-branches__type {
	font-family: var(--reb-font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--reb-text-faint);
}

.reb-contacts-branches__address {
	font-size: 15px;
	font-weight: 600;
}

.reb-contacts-branches__hours {
	font-size: 13px;
	color: var(--reb-text-muted);
}

.reb-contacts-branches__phone {
	font-size: 17px;
	font-weight: 800;
}

.reb-contacts-branches__actions {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.reb-contacts-branches__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid var(--reb-accent);
	transition: background 0.2s, color 0.2s;
}

.reb-contacts-branches__action--route {
	background: var(--reb-accent);
	color: #fff;
}

.reb-contacts-branches__action--route:hover {
	background: var(--reb-accent-dark);
	color: #fff;
}

.reb-contacts-branches__action--write {
	color: var(--reb-accent);
}

.reb-contacts-branches__action--write:hover {
	background: var(--reb-accent);
	color: #fff;
}

/* Адаптив. */
@media (max-width: 768px) {
	.reb-contacts-branches__inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.reb-contacts-branches__heading {
		font-size: 24px;
	}

	.reb-contacts-branches__grid {
		grid-template-columns: 1fr;
	}

	.reb-contacts-branches__action {
		flex: 1;
	}
}
