@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.videos_page,
.videos_page .videos-section {
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.videos-section {
	padding: 60px 0 80px;
	background: var(--brand-blue-bg-soft, #f6f9fc);
}

.videos-grid {
	row-gap: 32px;
}

.video-card {
	height: 100%;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--brand-border, rgba(26, 58, 82, 0.1));
	box-shadow: 0 8px 24px rgba(26, 58, 82, 0.06);
}

.video-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--brand-navy, #1a3a52);
}

.video-card__media--portrait {
	aspect-ratio: 9 / 16;
	max-width: 340px;
	margin: 0 auto;
	background: #0f1f2d;
}

.video-card--portrait {
	max-width: 380px;
	margin: 0 auto;
}

.video-card__media img,
.video-card__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-card__media--portrait video {
	object-fit: contain;
	background: #000;
}

.video-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 2.5rem;
}

.video-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(26, 58, 82, 0.35);
	color: #fff;
	text-decoration: none;
}

.video-card__play .pulse {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--brand-gold, #b29658);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	padding-left: 4px;
}

.video-card__body {
	padding: 16px;
}

.video-card__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--brand-navy, #1a3a52);
}

.videos-empty {
	text-align: center;
	color: var(--brand-text-muted, #5c6b7a);
	margin: 0;
	padding: 40px 0;
}

@media (max-width: 767px) {
	.videos-section {
		padding: 40px 0 56px;
	}
}
