.sott-pw-portfolio {
	--sott-pw-columns: 2;
	--sott-pw-button: #0b63ce;
	--sott-pw-ink: #10223f;
	--sott-pw-muted: #5d6b82;
	--sott-pw-line: #ffd21f;
	--sott-pw-border: #dfe5ee;
	color: var(--sott-pw-ink);
}

.sott-pw-filters {
	align-items: center;
	background: #fff;
	border: 1px solid var(--sott-pw-border);
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 30px;
	padding: 12px;
}

.sott-pw-filters a {
	background: #f7f9fc;
	border: 1px solid transparent;
	border-radius: 6px;
	color: var(--sott-pw-ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 11px 13px;
	text-decoration: none;
	transition: background-color .16s ease, border-color .16s ease, color .16s ease;
	white-space: nowrap;
}

.sott-pw-filters a:hover,
.sott-pw-filters a:focus,
.sott-pw-filters a.is-active {
	background: var(--sott-pw-ink);
	border-color: var(--sott-pw-ink);
	color: #fff;
}

.sott-pw-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(var(--sott-pw-columns), minmax(0, 1fr));
}

.sott-pw-card {
	background: #fff;
	border: 1px solid var(--sott-pw-border);
	border-radius: 8px;
	overflow: hidden;
}

.sott-pw-image-link {
	align-items: center;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(238, 243, 248, .94)),
		#f7f9fc;
	display: flex;
	justify-content: center;
	min-height: 220px;
	overflow: hidden;
	padding: 32px;
	position: relative;
	text-decoration: none;
}

.sott-pw-image-link::before {
	content: "";
	display: none;
	aspect-ratio: 16 / 9;
}

.sott-pw-image {
	box-sizing: border-box;
	display: block;
	height: auto;
	max-height: 156px;
	max-width: 100%;
	object-fit: contain;
	position: static;
	filter:
		drop-shadow(0 1px 0 rgba(16, 34, 63, .28))
		drop-shadow(0 8px 18px rgba(16, 34, 63, .10));
	width: auto;
}

.sott-pw-image-link--empty {
	background: #f7f9fc;
	padding: 0;
}

.sott-pw-image-link--empty::before {
	display: block;
}

.sott-pw-placeholder {
	background:
		linear-gradient(135deg, rgba(16, 34, 63, .08), rgba(11, 99, 206, .12)),
		repeating-linear-gradient(0deg, rgba(255,255,255,.44) 0 1px, transparent 1px 12px);
	display: block;
	height: 220px;
	width: 100%;
}

.sott-pw-content {
	padding: 24px;
}

.sott-pw-accent {
	background: var(--sott-pw-line);
	display: block;
	height: 4px;
	margin-bottom: 12px;
	width: 46px;
}

.sott-pw-title {
	color: var(--sott-pw-ink);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 8px;
}

.sott-pw-terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.sott-pw-terms a {
	color: var(--sott-pw-muted);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sott-pw-terms a:hover,
.sott-pw-terms a:focus {
	color: var(--sott-pw-button);
	text-decoration: underline;
}

.sott-pw-button {
	align-items: center;
	background: var(--sott-pw-button);
	border-radius: 6px;
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 8px;
	line-height: 1;
	padding: 13px 16px;
	text-decoration: none;
	transition: filter .16s ease, transform .16s ease;
}

.sott-pw-button:hover,
.sott-pw-button:focus {
	color: #fff;
	filter: brightness(.92);
	transform: translateY(-1px);
}

.sott-pw-empty {
	color: var(--sott-pw-muted);
	margin: 0;
}

@media (max-width: 760px) {
	.sott-pw-filters {
		flex-wrap: nowrap;
		margin-bottom: 22px;
		overflow-x: auto;
		padding: 10px;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.sott-pw-filters a {
		flex: 0 0 auto;
		font-size: 13px;
		padding: 10px 12px;
	}

	.sott-pw-grid {
		grid-template-columns: 1fr;
	}

	.sott-pw-content {
		padding: 20px;
	}

	.sott-pw-title {
		font-size: 21px;
	}

	.sott-pw-image-link {
		min-height: 180px;
		padding: 28px;
	}

	.sott-pw-image {
		max-height: 124px;
	}
}
