/*
--------------------------------------
items
--------------------------------------
*/

.gallery-items {
	background: var(--e-global-color-secondary);
	padding: 5em 0;
}

/*
--------------------------------------
item
--------------------------------------
*/

.gallery-item__images {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
	grid-auto-flow: dense;
	grid-gap: 20px;
	max-width: 70%;
	margin: auto;

	img {
		width: 250px;
		max-height: 100%;
		height: 250px;
		object-fit: cover;
	}

}

.gallery-items__title {
	font-family: var(--e-global-typography-primary-font-family);
	font-size: calc(36px + (45 - 36)*((100vw - 320px) /(1920 - 320)));
	font-weight: var(--e-global-typography-primary-font-weight);
	color: var(--e-global-color-primary);
	text-align: center;
	line-height: 1.25;
	padding-bottom: 1em;
}