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

.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:
				"category thumbnail"
				"title thumbnail"
				"date thumbnail";
	grid-template-columns: auto 200px;
	padding: 18px 0;
	min-height: 149px;
}

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

.video-tile:not(:first-child) {
	border-top: 1px solid #ECECEC;
}

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

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

.video-tile h2 {
	font-size: 20px;
	margin: 8px 0 0;
	line-height: 1;
	grid-area: title;

	--display: -webkit-box;
	--webkit-box-orient: vertical;
	--webkit-line-clamp: 3;
}

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

@media screen and (max-width: 500px) {
	.video-tile a {
		grid-template-columns: auto 145px;
	}
	.video-tile h2 {
		font-size: 18px;
	}

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


@media screen and (max-width: 300px) {
	.video-tile a {

	grid-template-areas:
				"category"
				"title"
		"thumbnail"
				"date";
		grid-template-columns: auto;
	}

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

