.si-screener__filters {
	display: grid;
	grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 1fr)) auto;
	gap: 14px;
	align-items: end;
	margin-bottom: 28px;
}

.si-screener .screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.si-screener__field,
.si-screener__actions { margin: 0; }
.si-screener__field label {
	display: block;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .06em;
	margin-bottom: 7px;
	text-transform: uppercase;
}
.si-screener__field input,
.si-screener__field select {
	background: #fff;
	border: 1px solid #c9ced3;
	border-radius: 0;
	box-sizing: border-box;
	font: inherit;
	min-height: 46px;
	padding: 9px 12px;
	width: 100%;
}
.si-screener__field input:focus,
.si-screener__field select:focus {
	outline: 3px solid rgba(0, 168, 79, .3);
	outline-offset: 1px;
}
.si-screener__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.si-screener__actions button {
	background: #00a84f;
	border: 0;
	color: #071018;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	min-height: 46px;
	padding: 10px 18px;
}
.si-screener__actions a { color: inherit; font-weight: 600; }
.si-screener__count { color: #59636d; font-size: .9rem; margin-bottom: 18px; }
.si-screener__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.si-screener-card { position: relative; }
.si-screener-card__image { aspect-ratio: 16 / 9; overflow: hidden; }
.si-screener-card__image img { height: 100%; object-fit: cover; width: 100%; }
.si-screener-card__terms { font-size: .82rem; margin-top: 14px; position: relative; z-index: 2; }
.si-screener-card__terms a { color: inherit; }
.si-screener__empty { border: 1px solid #d9dde0; padding: clamp(26px, 5vw, 60px); text-align: center; }
.si-screener__pagination { margin-top: 34px; }
.si-screener__pagination ul { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.si-screener__pagination a,
.si-screener__pagination span {
	align-items: center;
	border: 1px solid #c9ced3;
	color: inherit;
	display: inline-flex;
	justify-content: center;
	min-height: 42px;
	min-width: 42px;
	padding: 6px 10px;
	text-decoration: none;
}
.si-screener__pagination .current { background: #071018; border-color: #071018; color: #fff; }

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