.tvp-message {
	background: #171717;
	border: 1px solid rgba(205, 170, 96, 0.35);
	border-left: 4px solid #cdaa60;
	border-radius: 8px;
	color: #f5f1e8;
	margin: 1rem 0;
	padding: 1rem;
}

.tvp-message--denied {
	border-left-color: #8f7440;
}

.tvp-video-library {
	background: #101010;
	border: 1px solid rgba(205, 170, 96, 0.22);
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
	box-sizing: border-box;
	margin: 1.5rem 0;
	padding: clamp(1rem, 2.5vw, 1.75rem);
}

.tvp-group-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 0 0 1.25rem;
}

.tvp-group-tab {
	appearance: none;
	background: transparent !important;
	border: 1px solid rgba(205, 170, 96, 0.45) !important;
	border-radius: 999px;
	color: #f5f1e8 !important;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.7rem 1rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.tvp-group-tab:focus,
.tvp-group-tab:hover {
	background: rgba(205, 170, 96, 0.12) !important;
	border-color: #cdaa60 !important;
	color: #fff !important;
	outline: none;
}

.tvp-group-tab.is-active {
	background: #cdaa60 !important;
	border-color: #cdaa60 !important;
	color: #111 !important;
}

.tvp-video-grid {
	display: grid;
	gap: 1.35rem;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	margin: 0;
}

@media (max-width: 900px) {
	.tvp-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 560px) {
	.tvp-video-grid {
		grid-template-columns: 1fr !important;
	}
}

.tvp-video-card {
	background: #181818;
	border: 1px solid rgba(205, 170, 96, 0.2);
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	color: #f5f1e8;
	display: block;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tvp-video-card:focus,
.tvp-video-card:hover {
	border-color: rgba(205, 170, 96, 0.7);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
	outline: none;
	transform: translateY(-3px);
}

.tvp-video-card__media {
	aspect-ratio: 16 / 9;
	background: #242424;
	overflow: hidden;
	position: relative;
}

.tvp-video-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
	width: 100%;
}

.tvp-video-card:hover .tvp-video-card__media img,
.tvp-video-card:focus .tvp-video-card__media img {
	transform: scale(1.03);
}

.tvp-video-card__placeholder {
	align-items: center;
	background: linear-gradient(135deg, #202020, #111);
	color: #cdaa60;
	display: flex;
	font-weight: 600;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.tvp-video-card__title {
	color: #f5f1e8;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	padding: 1rem 1.05rem 1.1rem;
}

.tvp-single-video {
	background: #101010;
	border: 1px solid rgba(205, 170, 96, 0.22);
	border-radius: 8px;
	box-sizing: border-box;
	margin: 1.5rem 0;
	padding: clamp(1rem, 2.5vw, 1.75rem);
}

.tvp-single-video__thumb {
	margin-bottom: 1.25rem;
}

.tvp-single-video__thumb img {
	height: auto;
	max-width: 100%;
}

.tvp-video-embed {
	aspect-ratio: 16 / 9;
	margin: 1rem 0 1.5rem;
	max-width: 100%;
}

.tvp-video-embed iframe,
.tvp-video-embed embed,
.tvp-video-embed object,
.tvp-video-embed video {
	height: 100%;
	width: 100%;
}

.tvp-video-button {
	background: #cdaa60;
	border-radius: 999px;
	color: #111;
	display: inline-block;
	font-weight: 600;
	padding: 0.75rem 1.1rem;
	text-decoration: none;
}

.tvp-video-button:focus,
.tvp-video-button:hover {
	background: #e1c27b;
	color: #111;
}

.tvp-single-video__description {
	color: #f5f1e8;
	margin-top: 1.5rem;
}
