/* styles */

.presentation-card {
	background: #040404;
	border-radius: 12px;
	padding: 25px;
	flex: 1;
	min-width: 280px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.presentation-title {
	color: #e8c776;
	font-size: 20px;
	margin: 0 0 12px 0;
	font-family: 'Lato', sans-serif;
}

.presentation-text {
	color: #ffffff;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 20px 0;
}

.presentation-button {
	display: inline-block;
	color: #ffffff;
	padding: 12px 24px;
	background-color: var(--e-global-color-primary);
	text-decoration: none;
	border-radius: 5px;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 800;
	width: 100%;
	text-align: center;
	border: 1px solid #000000;
}

.presentation-button:hover {
	opacity: 0.9;
}

.tcs-continue-watching-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}

.tcs-continue-watching-card {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tcs-continue-watching-thumbnail,
.tcs-continue-watching-image,
.tcs-continue-watching-placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tcs-continue-watching-placeholder {
	background: #222;
}

.tcs-continue-watching-content {
	padding: 18px;
}

.tcs-continue-watching-title {
	margin: 0 0 12px;
	font-size: 20px !important;
	line-height: 1.35;
}

.tcs-continue-watching-title a {
	color: #000;
	text-decoration: none;
}

.tcs-progress-meta {
	margin-bottom: 7px;
	color: #000;
	font-size: 14px;
}

.tcs-progress-bar {
	height: 6px;
	margin-bottom: 18px;
	overflow: hidden;
	border-radius: 99px;
	background: #e3e5eb;
}

.tcs-progress-bar span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #e8c776;
}

.tcs-continue-watching-button {
	padding: 10px 16px;
}

.tcs-empty-state {
	padding: 24px;
	border-radius: 12px;
	background: #f5f5f5;
}


