.domel-representantes {
	color: #182033;
	font-family: Inter, Arial, sans-serif;
	margin: 0 auto;
	max-width: 1180px;
	width: 100%;
}

.domel-representantes .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.domel-rep-header {
	align-items: flex-end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.domel-rep-header h2 {
	color: var(--domel-rep-secondary);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.domel-rep-search {
	flex: 0 1 360px;
	margin: 0;
}

.domel-rep-search input {
	background: #fff;
	border: 1px solid #d9dee8;
	border-radius: 6px;
	color: #182033;
	font-size: 15px;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.domel-rep-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.domel-rep-tab {
	background: #fff;
	border: 1px solid #d9dee8;
	border-radius: 6px;
	color: var(--domel-rep-secondary);
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	min-height: 40px;
	padding: 9px 14px;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.domel-rep-tab:hover,
.domel-rep-tab.is-active {
	background: var(--domel-rep-secondary);
	border-color: var(--domel-rep-secondary);
	color: #fff;
}

.domel-rep-panel {
	display: none;
}

.domel-rep-panel.is-active {
	display: block;
}

.domel-rep-region-title {
	color: var(--domel-rep-secondary);
	font-size: 22px;
	margin: 24px 0 14px;
}

.domel-rep-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domel-rep-card {
	background: #fff;
	border: 1px solid #e3e7ef;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(10, 24, 55, .06);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 18px;
}

.domel-rep-card-top {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: space-between;
	margin-bottom: 12px;
}

.domel-rep-region {
	background: var(--domel-rep-primary);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 9px;
}

.domel-rep-city {
	color: #5b6475;
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.domel-rep-card h3 {
	color: var(--domel-rep-secondary);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 12px;
}

.domel-rep-line {
	color: #394255;
	font-size: 14px;
	line-height: 1.45;
	margin: 0 0 8px;
}

.domel-rep-line strong {
	color: #111827;
	font-weight: 800;
}

.domel-rep-line a {
	color: var(--domel-rep-primary);
	text-decoration: none;
}

.domel-rep-line a:hover {
	text-decoration: underline;
}

.domel-rep-separator {
	color: #8b94a5;
	display: inline-block;
	margin: 0 6px;
}

.domel-rep-note {
	background: #f7f9fc;
	border-left: 3px solid var(--domel-rep-primary);
	color: #5b6475;
	font-size: 13px;
	line-height: 1.45;
	margin: 8px 0 0;
	padding: 10px 12px;
}

.domel-rep-empty,
.domel-rep-no-results {
	background: #f7f9fc;
	border: 1px solid #e3e7ef;
	border-radius: 6px;
	color: #5b6475;
	margin: 14px 0;
	padding: 14px;
}

@media (max-width: 980px) {
	.domel-rep-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.domel-rep-header {
		align-items: stretch;
		flex-direction: column;
	}

	.domel-rep-header h2 {
		font-size: 24px;
	}

	.domel-rep-search {
		flex-basis: auto;
	}

	.domel-rep-grid {
		grid-template-columns: 1fr;
	}

	.domel-rep-card-top {
		align-items: flex-start;
		flex-direction: column;
	}

	.domel-rep-city {
		text-align: left;
	}
}
