:root {
  --color-white: #ffffff;
  --color-gold: #b89a54;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.125);
}

.play-btn {
  background: radial-gradient(circle at center, var(--color-gold) 0 18px, transparent 18px);
  border-radius: 50px;
	z-index: 10;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.play-btn svg {
  display: block;
  width: 48px;
	height: 48px;
  margin:0;
}

.play-btn svg path {
  fill: var(--color-white);
}

.video-overlay:hover .play-btn {
	opacity: 1;
}