/*
Theme Name: Kadence Child
Theme URI: https://example.com/
Description: Custom child theme for Kadence
Author: Perran Wallace
Template: kadence
Version: 1.0.0
*/

/* === Video Grid Styles === */

.video-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 2rem;
}

.video-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.video-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	line-height: 1.3;
}
.video-date {
	font-size: 0.8rem;
	color: #777;
	margin: 0 0 1rem;
}
.video-tile iframe,
.video-tile video {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	margin-bottom: 1rem;
}
.video-excerpt {
	font-size: 0.9rem;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;  /* adjust this based on how much space you want used */
	-webkit-box-orient: vertical;
	margin: 0;
}

.read-more-text {
	display: inline-block;
	margin-top: 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #262161;
	text-decoration: none;
	transition: color 0.2s ease;
}

.read-more-text:hover {
	color: #3A3993;
}

.read-more-text::after {
	content: " ➔";
	transition: margin-left 0.2s ease;
}

.read-more-text:hover::after {
	margin-left: 1px;
}

