.youtube-section .movie-list {
	display:-webkit-box;
	display: -webkit-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	flex-wrap:wrap;
	justify-content: flex-start;
	gap: 40px;
	list-style-type: none;
	padding: 0 !important;
}

.youtube-section .movie-list .movie-item {
	width: calc((100% - 80px) / 3);
}

.youtube-section .movie-list .movie-item h2 {
	font-size: 18px;
	line-height: 1.5;
}

.youtube-section .movie-list .movie-item .movie {
	position: relative;
	margin-bottom: 20px;
}

.youtube-section .movie-list .movie-item .movie::before {
	content: "";
    display: block;
    padding-top: 56%;
}

.youtube-section .movie-list .movie-item .movie iframe {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 1024px) {
	.youtube-section .movie-list {
		gap: 30px;
	}
	
	.youtube-section .movie-list .movie-item {
		width: calc((100% - 30px) / 2);
	}

	.youtube-section .movie-list .movie-item h2 {
		font-size: 16px;
		line-height: 1.4;
	}
	
	.youtube-section .movie-list .movie-item .movie {
		position: relative;
		margin-bottom: 15px;
	}
}


@media screen and (max-width: 666px) {
	.youtube-section .movie-list {
		gap: 40px;
	}

	.youtube-section .movie-list .movie-item {
		width: 100%;
	}

	
	.youtube-section .movie-list .movie-item h2 {
		font-size: 15px;
	}
	
	.youtube-section .movie-list .movie-item .movie {
		position: relative;
		margin-bottom: 10px;
	}
}