.foerderwert-funding-finder {
	box-sizing: border-box;
	padding: clamp(1rem, 2.5vw, 1.75rem);
	border: 1px solid #d7e1df;
	border-radius: 1.5rem;
	background: #ffffff;
	box-shadow: 0 0.75rem 2.25rem rgba(11, 38, 51, 0.08);
	color: #17313a;
}

.foerderwert-funding-finder__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.foerderwert-funding-finder__field {
	min-width: 0;
}

.foerderwert-funding-finder label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 700;
	line-height: 1.35;
}

.foerderwert-funding-finder select {
	width: 100%;
	height: 3rem;
	box-sizing: border-box;
	margin: 0;
	padding: 0 2.5rem 0 0.8rem;
	overflow: hidden;
	border: 1px solid #9badaa;
	border-radius: 0.85rem;
	background-color: #ffffff;
	color: #17313a;
	font: inherit;
	text-overflow: ellipsis;
	cursor: pointer;
}

.foerderwert-funding-finder__actions {
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
}

.foerderwert-funding-finder button {
	min-height: 3rem;
	padding: 0.7rem 1.4rem;
	border: 2px solid #00735f;
	border-radius: 999px;
	background: #00735f;
	color: #ffffff;
	font: inherit;
	font-weight: 750;
	cursor: pointer;
}

.foerderwert-funding-finder button:hover {
	border-color: #005c4c;
	background: #005c4c;
}

.foerderwert-funding-finder select:focus-visible,
.foerderwert-funding-finder button:focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #0b2633;
}

@media (max-width: 960px) {
	.foerderwert-funding-finder__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.foerderwert-funding-finder {
		padding: 1rem;
		border-radius: 1.1rem;
	}

	.foerderwert-funding-finder__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.foerderwert-funding-finder button {
		width: 100%;
	}
}
