/**********************************************************
// Block >> Example
**********************************************************/
.Block-Newsletter-Archive .Newsletter-Grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2em;
	list-style: none;
	margin: 0;
	padding: 0;
}

.Block-Newsletter-Archive .Newsletter-Grid h3 {
	font-size: 22px;
}

.Block-Newsletter-Archive .Newsletter-Thumb {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9; /* change if you prefer a different crop */
	overflow: hidden;
	background: #f5f5f7;
}

.Block-Newsletter-Archive .Newsletter-Thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform .35s ease;
}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 1024px),
all and (max-device-width: 1024px)
{
	.Block-Newsletter-Archive .Newsletter-Grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media
all and (max-width: 768px),
all and (max-device-width: 768px)
{
	.Block-Newsletter-Archive .Newsletter-Grid {
		grid-template-columns: 1fr;
	}
}

