.gallery {
	.gallery-item {
		display: block;
		overflow: hidden;
		aspect-ratio: 4 / 3;
		background: #f2f2f2;

		img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			cursor: pointer;
			transition: transform 0.2s;
		}

		&:hover {
			img {
				transform: scale(1.05);
			}
		}
	}
}
