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

.coda-mb-netsposts .netsposts-items.coda-mb-sync-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coda-mb-netsposts .netsposts-items.coda-mb-sync-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coda-mb-netsposts .netsposts-items.coda-mb-sync-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coda-mb-netsposts .netsposts-items.coda-mb-sync-cols-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.coda-mb-netsposts .netsposts-items.coda-mb-sync-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.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 .end-netsposts-content {
	display: none;
}

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

@media (max-width: 640px) {
	.coda-mb-netsposts .netsposts-items,
	.coda-mb-netsposts .netsposts-items[class*="coda-mb-sync-cols-"] {
		grid-template-columns: 1fr;
	}
}
