.derra-property-results {
	padding-block: 48px 72px;
}

.derra-property-results__header {
	margin-bottom: 28px;
}

.derra-property-search {
	background: var(--derra-black);
	border-radius: 12px;
	color: var(--derra-white);
	margin-bottom: 28px;
	padding: 20px;
}

.derra-property-search__grid {
	display: grid;
	gap: 14px;
}

.derra-property-search__field {
	display: grid;
	gap: 5px;
}

.derra-property-search__field label {
	font-size: 13px;
	font-weight: 800;
}

.derra-property-search__field input,
.derra-property-search__field select {
	background: var(--derra-white);
	border: 1px solid var(--derra-gray-200);
	border-radius: 6px;
	color: var(--derra-black);
	font: inherit;
	min-height: 46px;
	padding: 8px 10px;
	width: 100%;
}

.derra-property-search__actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.derra-property-search__actions button,
.derra-property-search__actions a {
	align-items: center;
	border: 2px solid var(--derra-red);
	border-radius: 6px;
	display: flex;
	font: inherit;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	padding: 8px 16px;
	text-decoration: none;
}

.derra-property-search__actions button {
	background: var(--derra-red);
	color: var(--derra-white);
	cursor: pointer;
}

.derra-property-search__actions a {
	color: var(--derra-white);
}

.derra-property-search__actions button:hover,
.derra-property-search__actions button:focus,
.derra-property-search__actions a:hover,
.derra-property-search__actions a:focus {
	background: var(--derra-white);
	color: var(--derra-red);
}

.derra-property-results__count {
	color: var(--derra-gray-600);
	font-weight: 700;
	margin: 0 0 20px;
}

.derra-property-results__empty {
	background: var(--derra-gray-50);
	border-left: 4px solid var(--derra-red);
	padding: 24px;
}

.derra-property-results__empty h2 {
	margin-top: 0;
}

.navigation.pagination {
	margin-top: 36px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	border: 1px solid var(--derra-gray-200);
	border-radius: 5px;
	padding: 7px 11px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--derra-red);
	border-color: var(--derra-red);
	color: var(--derra-white);
}

@media (min-width: 600px) {
	.derra-property-search__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.derra-property-search__actions {
		align-items: center;
		display: flex;
	}
}

@media (min-width: 960px) {
	.derra-property-results {
		padding-block: 72px 96px;
	}

	.derra-property-search__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
