.home-section.sg-zv-home-section {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding-top: 0;
}

.sg-zv-home-section__inner {
	width: 100%;
	max-width: var(--wp--style--global--wide-size);
	box-sizing: border-box;
	margin-right: auto;
	margin-left: auto;
}

.sg-zv-home-section__inner > .section-title {
	margin-bottom: var(--wp--preset--spacing--20, .75rem);
	font-family: var(--wp--preset--font-family--system);
}

.sg-zv-home-section__inner > .sg-zv-widget {
	max-width: none;
}

.sg-zv-widget {
	width: 100%;
	max-width: var(--wp--style--global--wide-size);
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
	color: #24303d;
	overflow: hidden;
}

.sg-zv-widget__title {
	margin: 0 0 1.25rem;
	color: #183a59;
	font-size: var(--wp--preset--font-size--large, 1.35rem);
	line-height: 1.15;
}

.sg-zv-grid {
	display: grid;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.sg-zv-cols-1 .sg-zv-grid {
	grid-template-columns: 1fr;
}

.sg-zv-cols-2 .sg-zv-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sg-zv-cols-4 .sg-zv-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sg-zv-card {
	position: relative;
	display: flex;
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #dfe5ea;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 3px 12px rgba(24, 58, 89, .07);
	transition: box-shadow .18s ease, transform .18s ease;
}

.sg-zv-card__overlay {
	position: absolute;
	z-index: 1;
	inset: 0;
	border-radius: inherit;
}

.sg-zv-card__overlay:focus-visible {
	outline: 3px solid #2f5f88;
	outline-offset: -3px;
}

.sg-zv-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 7px 20px rgba(24, 58, 89, .12);
}

.sg-zv-card__image {
	display: block;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eef3f6;
}

.sg-zv-card__image img {
	display: block;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: center;
	transition: transform .25s ease;
}

.sg-zv-card:hover .sg-zv-card__image img {
	transform: scale(1.025);
}

.sg-zv-card__placeholder {
	display: grid;
	width: 100%;
	aspect-ratio: 16 / 9;
	place-items: center;
	color: #547694;
	font-size: 2.25rem;
}

.sg-zv-card__body {
	display: flex;
	box-sizing: border-box;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem;
}

.sg-zv-card__label {
	display: inline-block;
	margin-bottom: .55rem;
	border-radius: 4px;
	background: #eaf1f6;
	color: #2f5f88;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .035em;
	line-height: 1.2;
	padding: .3rem .48rem;
	text-transform: uppercase;
}

.sg-zv-card__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 0;
	color: #183a59;
	font-size: 1.18rem;
	line-height: 1.3;
}

.sg-zv-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: .7rem 0;
	color: #4d5965;
	font-size: .93rem;
	line-height: 1.55;
}

.sg-zv-card__date {
	margin-top: auto;
	color: #687785;
	font-size: .82rem;
}

.sg-zv-card__read {
	display: inline-block;
	margin-top: auto;
	border-radius: 6px;
	background: #547694;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.3;
	padding: .6rem .75rem;
	text-decoration: none;
}

.sg-zv-share {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: .25rem;
	margin-top: .85rem;
	padding-top: .65rem;
	border-top: 1px solid #edf0f2;
}

.sg-zv-share a,
.sg-zv-share button {
	appearance: none;
	margin: 0;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: #2f5f88;
	cursor: pointer;
	font: inherit;
	font-size: .74rem;
	font-weight: 700;
	line-height: 1.3;
	padding: .25rem .35rem;
	text-decoration: none;
}

.sg-zv-share a:hover,
.sg-zv-share a:focus-visible,
.sg-zv-share button:hover,
.sg-zv-share button:focus-visible {
	background: #edf2f5;
	color: #183a59;
}

.sg-zv-widget__footer {
	margin: 1.25rem 0 0;
}

.sg-zv-widget__button {
	position: relative;
	z-index: 2;
	display: inline-block;
	border-radius: 7px;
	background: #547694;
	color: #fff;
	font-weight: 700;
	padding: .75rem 1rem;
	text-decoration: none;
}

.sg-zv-widget__button:hover,
.sg-zv-widget__button:focus-visible {
	background: #2f5f88;
	color: #fff;
}

@media (max-width: 56.25rem) {
	.sg-zv-grid,
	.sg-zv-cols-3 .sg-zv-grid,
	.sg-zv-cols-4 .sg-zv-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 37.5rem) {
	.sg-zv-grid,
	.sg-zv-cols-2 .sg-zv-grid,
	.sg-zv-cols-3 .sg-zv-grid,
	.sg-zv-cols-4 .sg-zv-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sg-zv-card,
	.sg-zv-card__image img {
		transition: none;
	}
}
