﻿/* ===== Quick Links ===== */
.quick-links {
  margin-top: 20px;
  padding: 14px 18px;
  background: #f0f8ff;
  border-left: 6px solid #1e90ff;
  border-radius: 10px;
  font-size: 0.95em;
  color: #0b3d91;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.quick-links strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05em;
  color: #003366;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin: 6px 0;
}

.quick-links a {
  text-decoration: none;
  color: #1e90ff;
  transition: all 0.2s ease;
  font-weight: 500;
}

.quick-links a:hover {
  color: #003366;
  text-decoration: underline;
}

/* ===== Responsive Video Embeds ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;   /* contain video on desktop */
  margin: 0 auto;

  aspect-ratio: 16 / 9;  /* replaces padding-bottom hack */
  overflow: hidden;

  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 1rem; /* space between stacked videos */
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-wrapper {
    max-width: 100%;  /* full width on mobile */
  }
}
