.vsk-results-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

.vsk-result-card {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	min-width: 0;
	min-height: 210px;
	padding: 28px 30px;
	background: #fff;
	border: 1px solid #e8d8cc;
	border-radius: 22px;
	text-align: start;
	transition-property: transform, background-color, border-color, box-shadow;
	transition-duration: .2s;
	transition-timing-function: ease;
}

.vsk-result-content {
	min-width: 0;
}

.vsk-result-kicker {
	margin: 0 0 16px;
	color: #7a2d00;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.vsk-result-title {
	margin: 0 0 20px;
	padding: 0;
	color: #000;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
}

.vsk-result-description {
	margin: 0;
	color: #111;
	font-size: 16px;
	line-height: 1.5;
}

.vsk-result-description > :first-child {
	margin-top: 0;
}

.vsk-result-description > :last-child {
	margin-bottom: 0;
}

.vsk-button-wrap {
	display: flex;
	justify-content: start;
	padding-top: 22px;
}

.vsk-result-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	max-width: 100%;
	padding: 11px 20px;
	background: #292929;
	border: 0 solid transparent;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.vsk-result-button:hover,
.vsk-result-button:focus {
	color: #fff;
	text-decoration: none;
}

.vsk-result-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.vsk-results-empty {
	width: 100%;
}

@media (max-width: 767px) {
	.vsk-results-grid {
		grid-template-columns: 1fr;
	}

	.vsk-result-card {
		min-height: 160px;
		text-align: center;
	}

	.vsk-button-wrap {
		justify-content: center;
	}

	.vsk-result-button {
		width: 100%;
	}
}


/* Long-description excerpt and accessible responsive popup. */
.vsk-result-excerpt {
	margin: 0;
}

.vsk-excerpt-ellipsis {
	white-space: nowrap;
}

.vsk-read-more {
	appearance: none;
	-webkit-appearance: none;
	display: inline;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #7a2d00;
	font: inherit;
	font-weight: 700;
	line-height: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	cursor: pointer;
}

.vsk-read-more:hover,
.vsk-read-more:focus-visible {
	color: #4e1d00;
}

.vsk-read-more:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
	border-radius: 3px;
}

.vsk-modal[hidden] {
	display: none !important;
}

.vsk-modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: clamp(16px, 4vw, 48px);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.vsk-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.vsk-modal-backdrop {
	position: absolute;
	inset: 0;
	background-color: rgba(15, 15, 15, .72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.vsk-modal-dialog {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: 100%;
	max-width: 760px;
	max-height: min(88vh, 920px);
	overflow: hidden auto;
	overscroll-behavior: contain;
	background: #fff;
	border: 1px solid rgba(122, 45, 0, .16);
	border-radius: 24px;
	box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
	color: #1a1a1a;
	text-align: left;
	transform: translateY(18px) scale(.985);
	transition: transform .22s ease;
	scrollbar-width: thin;
}

.vsk-modal.is-open .vsk-modal-dialog {
	transform: translateY(0) scale(1);
}

.vsk-modal-inner {
	box-sizing: border-box;
	padding: 42px 44px;
}

.vsk-modal-kicker {
	margin: 0 52px 12px 0;
	color: #7a2d00;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .03em;
	text-transform: uppercase;
}

.vsk-modal-title {
	margin: 0 52px 24px 0;
	padding: 0;
	color: #111;
	font-size: clamp(27px, 4vw, 40px);
	font-weight: 650;
	line-height: 1.15;
}

.vsk-modal-content {
	color: #1a1a1a;
	font-size: 17px;
	line-height: 1.7;
}

.vsk-modal-content > :first-child {
	margin-top: 0;
}

.vsk-modal-content > :last-child {
	margin-bottom: 0;
}

.vsk-modal-close {
	appearance: none;
	-webkit-appearance: none;
	position: sticky;
	z-index: 2;
	top: 18px;
	float: right;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 18px 18px -60px 0;
	padding: 0;
	background: #f1f1f1;
	border: 0;
	border-radius: 50%;
	color: #111;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease;
}

.vsk-modal-close:hover {
	transform: rotate(4deg) scale(1.05);
	background: #e5e5e5;
}

.vsk-modal-close:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.vsk-modal-close svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

body.vsk-modal-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.vsk-modal {
		align-items: flex-end;
		padding: 10px;
	}

	.vsk-modal-dialog {
		max-height: 92vh;
		border-radius: 20px 20px 14px 14px;
		transform: translateY(28px);
	}

	.vsk-modal-inner {
		padding: 34px 24px 30px;
	}

	.vsk-modal-close {
		top: 12px;
		width: 40px;
		height: 40px;
		margin: 12px 12px -52px 0;
	}

	.vsk-modal-kicker,
	.vsk-modal-title {
		margin-right: 48px;
	}

	.vsk-modal-title {
		margin-bottom: 20px;
		font-size: 28px;
	}

	.vsk-modal-content {
		font-size: 16px;
		line-height: 1.65;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vsk-modal,
	.vsk-modal-dialog,
	.vsk-modal-close {
		transition: none;
	}
}
