.coverage-block {
	background: #fff;
}

.coverage-block__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
	margin-bottom: 32px;
}

.coverage-block__title {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 500;
	line-height: 1.25;
	color: #1a1918;
	margin: 12px 0 10px;
}

.coverage-block__desc {
	font-size: 14px;
	color: #6b6a68;
	line-height: 1.65;
	max-width: 520px;
}

.coverage-stats {
	display: flex;
	gap: 24px;
	padding: 20px 28px;
	background: #f5f4f2;
	border-radius: 16px;
	flex-shrink: 0;
}

.coverage-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	min-width: 56px;
}

.coverage-stat__num {
	font-size: 24px;
	font-weight: 500;
	color: #1a1918;
	line-height: 1;
}

.coverage-stat__label {
	font-size: 11px;
	color: #aaa9a7;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.coverage-badge {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: #f5f4f2;
	border-radius: 16px;
	flex-shrink: 0;
}

.coverage-badge__label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #aaa9a7;
	display: block;
	margin-bottom: 3px;
}

.coverage-badge__value {
	font-size: 15px;
	font-weight: 500;
	color: #1a1918;
}

.coverage-regions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.coverage-region-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid #e5e4e2;
	border-radius: 100px;
	text-decoration: none;
	color: #1a1918;
	font-size: 14px;
	font-weight: 500;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.coverage-region-card:hover {
	border-color: #fecc43;
	box-shadow: 0 2px 12px rgba(26, 25, 24, 0.07);
}

.coverage-region-card__pin {
	width: 14px;
	height: 18px;
	flex-shrink: 0;
}

.coverage-region-card__name {
	flex: 1;
	line-height: 1.3;
}

.coverage-region-card__arrow {
	width: 12px;
	height: 12px;
	color: #cccbc9;
	flex-shrink: 0;
	transition: color 0.2s ease;
}

.coverage-region-card:hover .coverage-region-card__arrow {
	color: #fecc43;
}

.coverage-table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #e5e4e2;
	border-radius: 16px;
	overflow: hidden;
}

.coverage-col {
	border-right: 1px solid #e5e4e2;
}

.coverage-col:last-child {
	border-right: none;
}

.coverage-col__header {
	padding: 12px 18px;
	background: #f5f4f2;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b6a68;
	border-bottom: 1px solid #e5e4e2;
}

.coverage-col__list {
	list-style: none;
	padding: 6px 0;
	margin: 0;
}

.coverage-col__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 18px;
	font-size: 14px;
	color: #1a1918;
	border-bottom: 1px solid rgba(26, 25, 24, 0.04);
	transition: background 0.15s ease;
}

.coverage-col__item:last-child {
	border-bottom: none;
}

.coverage-col__dot {
	width: 8px;
	height: 8px;
	flex-shrink: 0;
}

.coverage-col__text {
	color: #1a1918;
	line-height: 1.4;
}

.coverage-kyiv-block {
	margin-top: 0;
	border: 1px solid #e5e4e2;
	border-radius: 16px;
	overflow: hidden;
}

.coverage-kyiv-block__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 16px 20px;
	background: #f5f4f2;
	border-bottom: 1px solid #e5e4e2;
}

.coverage-kyiv-block__title {
	font-size: 15px;
	font-weight: 500;
	color: #1a1918;
	margin: 0;
	flex: 1;
	line-height: 1.3;
}

.coverage-kyiv-block__more {
	font-size: 13px;
	font-weight: 500;
	color: #1a1918;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px dashed rgba(26, 25, 24, 0.2);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.coverage-kyiv-block__more:hover {
	color: #1a1918;
	border-bottom-color: #fecc43;
}

.coverage-table--kyiv {
	border: none;
	border-radius: 0;
}

.coverage-table--kyiv .coverage-col {
	border-top: none;
}

.coverage-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 12px 18px;
	background: rgba(254, 204, 67, 0.07);
	border: 1px solid rgba(254, 204, 67, 0.25);
	border-radius: 12px;
	font-size: 13px;
	color: #6b6a68;
}

.coverage-note a {
	color: #1a1918;
	font-weight: 500;
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.coverage-regions-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.coverage-block__header {
		flex-direction: column;
		gap: 20px;
	}

	.coverage-table {
		grid-template-columns: 1fr 1fr;
	}

	.coverage-col:nth-child(2) {
		border-right: none;
	}

	.coverage-col:nth-child(3) {
		grid-column: 1 / -1;
		border-right: none;
		border-top: 1px solid #e5e4e2;
	}
}

@media (max-width: 640px) {
	.coverage-regions-grid {
		grid-template-columns: 1fr;
	}

	.coverage-table {
		grid-template-columns: 1fr;
	}

	.coverage-col {
		border-right: none;
		border-bottom: 1px solid #e5e4e2;
	}

	.coverage-col:last-child {
		border-bottom: none;
	}

	.coverage-stats {
		gap: 16px;
		padding: 14px 18px;
		width: 100%;
		justify-content: space-between;
	}
}
