/* Video block */

.video-placeholder img {
  height: 100%;
	min-height: 260px;
  object-fit: cover;
}

#video-container {
  height: 100%;
  min-height: 500px;
}


.video-placeholder {
	border-radius: 32px;
	overflow: hidden;
	border-bottom-right-radius: 0;
}


.play-button {
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
}

.play-button svg {
	width: 40px;
	height: 40px;
}

.video-footer {
	background-color: #F8F9FA;
	padding: 16px 0 0 16px;
	border-top-left-radius: 32px;
}

.video-footer::after {
	content: "";
	width: 50px;
	height: 40px;
	position: absolute;
	border-radius: 32px;
	background-color: transparent;
	left: -50px;
	bottom: 0;
	box-shadow: 15px 25px 0 0 #f8f9fa;
}

.video-footer::before {
	content: "";
	width: 50px;
	height: 50px;
	position: absolute;
	border-radius: 32px;
	background-color: transparent;
	right: 0px;
	top: -50px;
	box-shadow: 30px 20px 0 0 #f8f9fa;
}


.video-footer a {
	display: inline-block;
	background-color: #5271FF;
	color: white;
	font-size: clamp(10px, 1.5vw, 20px);
	font-weight: 600;
	text-decoration: none;
	border-radius: 32px;
	transition: all 0.3s ease-in-out;
	z-index: 99;
    position: relative;
}

.video-footer a:hover {
	background-color: #405bbf;
	color: #fff;
	border: none;
}

@media (max-width: 768px) {
	.video-footer {
		padding: 10px 0 5px 10px;
	}
}