.custom-button {
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  border: none;
}

.custom-button:hover {
  background-color: #0056b3;
}

/* Base styling for embedded videos */
video {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin: 1.5em auto;
  background: #000;
}

/* Optional styling for figure + caption layout */
figure {
  margin: 2em auto;
  text-align: center;
}

figure video {
  margin-bottom: 0.75em;
}

figcaption {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
}

