/* Video Button Styling */
.svl-video-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--ast-global-color-1);
  color: var(--ast-global-color-3);
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid white;
  cursor: pointer;
  font-family: 'Borna Semi-bold';
  font-weight: 700;
}

.svl-video-button:hover {
   background-color: var(--ast-global-color-5);
   border: 1px solid var(--ast-global-color-0);
}
a.svl-video-button:hover {
   color: var(--ast-global-color-0);
}

.svl-container a:before {
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f04b";
	margin-right: 0.5em;
}
/* Video Thumbnail Styling */
.svl-video-thumb {
   max-width: 100%;
   height: auto;
   border-radius: 5px;
   cursor: pointer;
   transition: opacity 0.3s ease-in-out;
}

.svl-video-thumb:hover {
   opacity: 0.8;
}
