.history-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	min-width: 0;
	margin-bottom: 15px;

}
.history-gallery img {
	max-width: 100%;
	display: block;
	max-height: 200px;
}
.history-video {
	margin-bottom: 15px;
	height: 0;
	padding-bottom: 56%;
	position: relative;
}
.history-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.history-text {
	margin-bottom: 15px;
}
.history-video-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.history-video-grid .history-video {
	margin-bottom: 0;
}

@media (max-width: 500px) {
	.history-gallery, .history-video-grid {
		grid-template-columns: 1fr;
		justify-content: center;
	}
}

