/* ========================================
   GALLERY LIST PAGE STYLES
   ======================================== */

.thumbnail-container {
	flex: 1;
	overflow-y: auto;
	padding: 1rem;
}

.thumbnail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 160px));
	gap: 1rem;
	justify-content: start;
}

.thumbnail-grid a {
	display: block;
	width: 160px;
	height: 160px;
}

.thumbnail-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
