/**
 *
 * phpBB Studio - Video blog gallery. An extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2020, phpBB Studio, https://www.phpbbstudio.com
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */

.grid {
	display: grid;
	align-items: stretch;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.grid > article {
	border: 1px solid #cccccc;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.grid > article video {
	max-width: 100%;
	height: 200px;
}

.text {
	padding: 0 5px 5px;
}

.text > button {
	font-size: 0.9rem;
	background: linear-gradient(60deg, #77e5f2, #0e99aa);
	border: 1px solid transparent;
	border-radius: 3px;
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(1, 23, 26, 0.96);
	width: 200px;
}

.text > button:hover {
	transition-duration: 0.3s;
	transform: scale(1.09);
}
