.gallery-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery-title {
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin-bottom: 30px;
  font-size: 1.8em;
}

.video-block video {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 9 / 16; /* Ideal for vertical videos */
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
}

.video-block {
  margin-bottom: 40px;
  text-align: center;
}

.video-tagline {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2em;
  color: #01527C;
  margin-bottom: 12px;
}

/* Image block styling */
.image-block {
  margin-bottom: 40px;
  text-align: center;
}

.image-tagline {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.2em;
  color: #01527C;
  margin-bottom: 12px;
}

.image-block img,
.video-block video {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto;
  border: 1px solid black;
  padding: 2px;
}

@media (max-width: 480px) {
  .video-block video {
    max-width: 100%;
    aspect-ratio: auto;
  }
}

