.videos {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
}

.video {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.video__title {
	margin-bottom: 15px;
	font-size: 20px;
}

.video__content {
	width: 100%;
	margin-bottom: 20px;
	box-shadow: 0 0px 5px rgb(0 0 0 / 25%);
}

.video__content iframe {
	width: 100%;
	display: block;
}

.video__button {
	display: none;
	margin-bottom: 20px;
	padding: 15px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff!important;
	background-color: #ff0000;
	border-radius: 4px;
	border: none!important;
	cursor: pointer;
}

.video__description {
	display: none;
	font-size: 16px;
}

@media screen and (max-width: 619px) {
	.videos {
		grid-template-columns: 1fr;
	}

	.video__button {
		display: flex;
		justify-content: center;
	}

	.video__description {
		display: block;
	}
}