.ed-gallery-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(var(--ed-gallery-cols, 3), minmax(0, 1fr));
	width: 100%;
}

@media (max-width: 1024px) {
	.ed-gallery-grid {
		grid-template-columns: repeat(var(--ed-gallery-cols-tablet, 2), minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ed-gallery-grid {
		grid-template-columns: repeat(var(--ed-gallery-cols-mobile, 1), minmax(0, 1fr));
	}
}

.ed-gallery-grid .ed-gallery-cover,
.ed-gallery-cover {
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
	text-decoration: none;
}

.ed-gallery-cover__img {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.ed-gallery-cover__meta {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em;
	line-height: 1.3;
}

.ed-gallery-cover__title {
	color: var(--contrast, #030303);
	font-family: var(--gp-font--nunito-sans), sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
}

.ed-gallery-cover__count {
	color: var(--base-2, #8a98ae);
	font-family: var(--gp-font--nunito-sans), sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
}
