.block-trending {
}

.block-trending .block-trending__inner {
	display: grid;
	gap: 16px;
}

.block-trending .block-trending__item {
	text-decoration: none;
	display: flex;
	gap: 8px;
	align-items: center;
}

.block-trending .block-trending__item svg {
	fill: var(--wp--preset--color--primary);
	flex-shrink: 0;
}

.block-trending .block-trending__item-content {

}

.block-trending .block-trending__item-title {
	font-family: var(--wp--custom--typography--heading--font-family);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: var(--wp--custom--typography--heading--font-weight);
	letter-spacing: var(--wp--custom--typography--heading--letter-spacing);
	line-height: var(--wp--custom--typography--heading--line-height);
	text-transform: var(--wp--custom--typography--heading--text-transform);

	color: var(--wp--preset--color--primary);
}

.block-trending .block-trending__item-desc {
	color: var(--wp--custom--color--neutral-700);
	font-size: var(--wp--preset--font-size--small);

}

@media only screen and (max-width: 735px) {

}

@media only screen and (min-width: 736px) {
	.block-trending .block-trending__inner {
		grid-template-columns: repeat( 2, minmax(0, 1fr));
	}
}

@media only screen and (min-width: 1200px) {
	.block-trending .block-trending__inner {
		grid-template-columns: repeat( 4, minmax(0, 1fr));
	}
}
