.cf-footer,
.cf-footer * {
	box-sizing: border-box;
}

.cf-footer {
	--cf-max-width: 1280px;
	--cf-top-bg: #075172;
	--cf-bottom-bg: #044965;
	--cf-accent: #ff8a00;
	--cf-text: #ffffff;
	--cf-muted: #a8c3d3;
	--cf-divider: rgba(255,255,255,.22);
	--cf-columns: 3;
	width: 100%;
	font-family: inherit;
}

.cf-footer__top {
	background: var(--cf-top-bg);
	color: var(--cf-text);
}

.cf-footer__bottom {
	background: var(--cf-bottom-bg);
	color: var(--cf-muted);
}

.cf-footer__inner {
	width: 100%;
	max-width: var(--cf-max-width);
	margin: 0 auto;
}

.cf-footer__locations {
	display: grid;
	grid-template-columns: repeat(var(--cf-columns), minmax(0, 1fr));
	gap: 34px;
	padding: 28px 26px 30px;
}

.cf-footer__location {
	position: relative;
	padding: 0 22px;
	min-height: 104px;
}

.cf-footer__location::before,
.cf-footer__location:last-child::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--cf-divider);
}

.cf-footer__location::before {
	left: 0;
}

.cf-footer__location:last-child::after {
	right: 0;
}

.cf-footer__location-title {
	display: inline-block;
	margin: 0 0 4px;
	color: var(--cf-accent);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
}

.cf-footer__location-title:hover,
.cf-footer__location-title:focus {
	color: var(--cf-accent);
	text-decoration: underline;
}

.cf-footer__location-subtitle {
	margin: 0 0 6px;
	color: var(--cf-text);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.cf-footer__location-text {
	color: var(--cf-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
}

.cf-footer__location-text p {
	margin: 0;
}

.cf-footer__location-text a {
	color: var(--cf-text);
	text-decoration: none;
}

.cf-footer__location-text a:hover,
.cf-footer__location-text a:focus {
	text-decoration: underline;
}

.cf-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 26px;
}

.cf-footer__logo-wrap {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--cf-text);
}

.cf-footer__logo,
.cf-footer__default-icon {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.cf-footer__brand-texts {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1px;
	min-width: 0;
}

.cf-footer__brand-name {
	color: var(--cf-muted);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.cf-footer__copyright {
	color: var(--cf-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.cf-footer--center .cf-footer__locations,
.cf-footer--center .cf-footer__location {
	text-align: center;
}

.cf-footer--center .cf-footer__brand-row {
	justify-content: center;
}

@media (max-width: 900px) {
	.cf-footer__locations {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.cf-footer__location {
		padding: 0 0 20px;
		min-height: initial;
		border-bottom: 1px solid var(--cf-divider);
	}

	.cf-footer__location::before,
	.cf-footer__location:last-child::after {
		display: none;
	}

	.cf-footer__location:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}
}

@media (max-width: 520px) {
	.cf-footer__locations {
		padding: 24px 20px;
	}

	.cf-footer__brand-row {
		padding: 18px 20px;
		align-items: flex-start;
	}

	.cf-footer__location-title {
		font-size: 15px;
	}

	.cf-footer__location-text {
		font-size: 13px;
	}
}
