/* Connector / netsposts document grids */
.coda-mb-netsposts .netsposts-items {
	display: grid;
	grid-template-columns: repeat(var(--coda-mb-sync-cols, 1), minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	align-items: start;
}

.coda-mb-netsposts .netsposts-content {
	min-width: 0;
}

.coda-mb-netsposts .netsposts-excerpt p {
	margin: 0 0 0.5rem;
}

.coda-mb-netsposts .netsposts-excerpt a {
	color: var(--coda-mb-sync-link-color, inherit);
}

.coda-mb-netsposts .netsposts-excerpt a::before {
	content: "";
	display: block;
	width: 48px;
	height: 48px;
	margin: 0 0 0.5rem;
	background-image: var(--coda-mb-sync-icon, none);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.coda-mb-netsposts .end-netsposts-content {
	display: none;
}

@media (max-width: 1024px) {
	.coda-mb-netsposts .netsposts-items {
		grid-template-columns: repeat(min(var(--coda-mb-sync-cols, 1), 3), minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.coda-mb-netsposts .netsposts-items {
		grid-template-columns: 1fr;
	}
}
