.strategy-videos {
	padding: 120px 0 60px;
}

.strategy-videos__title {
	max-width: 790px;
	margin: 0 auto;
	margin-bottom: 60px;
	text-align: center;
	font-weight: 400;
}

.strategy-videos__videos {
	display: grid;
	grid-gap: 25px;
	grid-template-columns: repeat(3, 1fr);
}

.strategy-video__title {
	font-weight: 600;
	font-size: 1.5rem;
	margin-top: 15px;
	line-height: 1.5;
	color: var(--text-color-dark);
}

.strategy-video__date {
	color: #666666;
	margin-top: 5px;
	line-height: 1.5;
}

@media screen and (max-width: 992px) {
	.strategy-videos__videos {
		grid-template-columns: repeat(2, 1fr);
	}
	.strategy-video__title {
		font-size: 1rem;
	}
}

@media screen and (max-width: 768px) {
	.strategy-videos__title {
		margin-bottom: 30px;
	}
	.strategy-videos {
		padding: 60px 0 30px;
	}
}

@media screen and (max-width: 552px) {
	.strategy-videos__videos {
		grid-template-columns: repeat(1, 1fr);
	}
}