.video-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	flex-direction: column;
	gap: 30px;
}

.video-tile {
	overflow: hidden;
	transition: all .1s linear;
	user-select: none;
}

.video-tile a {
	color: var(--colour-main);
	font-size: 20px;
	display: grid;
	text-decoration: none;
	grid-template-areas:
				"thumbnail category"
				"thumbnail title"
				"thumbnail description"
				"thumbnail date";
	grid-template-columns: auto auto;
	gap: 0 28px;
}

.video-tile img {
	width: 352px;
	aspect-ratio: 16/9;
	grid-area: thumbnail;
	align-self: top;
	justify-self: left;
	border-radius: var(--border-radius);
}

.pill-box {
	grid-area: category;
	display: flex;
	align-items: flex-start;
}

.pill {
	font-size: 14px;
	padding: 2px 15px;
	border-radius: var(--border-radius-pills-small);
	text-transform: uppercase;

}

.video-tile h2 {
	font-size: 25px;
	margin: 10px 0 0;
	grid-area: title;
}

.video-tile .description {
	text-align: justify;
	font-size: 16px;
	color: var(--colour-date);
	margin: 10px 0 0;
	max-height:72px;
	grid-area: description;
	overflow: hidden;
}

.video-tile .date {
	font-size: 16px;
	color: var(--colour-date);
	margin: 10px 0 0;
	align-self: end;
}



@media screen and (max-width: 800px) {
	.video-tile img {
		width: 300px;
	}
	
}

@media screen and (max-width: 700px) {
	.video-tile h2 {
	font-size: 20px;
}

	.video-tile img {
		width: 250px;
	}

}

@media screen and (max-width: 600px) {
	.video-tile h2 {
	font-size: 20px;
}

	.video-tile img {
		width: 250px;
	}

}

@media screen and (max-width: 600px) {
	.video-tile a {
	grid-template-areas:
				"category"
				"title"
		"thumbnail"
				"description"
				"date";
		grid-template-columns: auto;
	}

	.video-tile img {
		width: 100%;
		margin-top: 10px;
	}
	
	.video-tile .date {
		margin-top: 5px;
	}
}
