.video-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-item {
  margin: 20px 0;
}

video {
  max-width: 100%;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
}

p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px;
  flex-wrap: wrap; /* Ensures responsiveness */
}

.gallery-section {
  margin: 20px auto;
  max-width: 1200px;
}

.gallery-item {
  flex: 1 1 calc(33.33% - 20px);
  max-width: 1200px;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
  text-align: center;
  font-size: 1.2rem; /* Adjust font size */
  margin-top: 10px;
  color: #333; /* Optional: caption text color */
}

.gallery-wide {
  flex: 1 1 100%; /* Single wide image */
  max-width: 100%;
}

.gallery-wide img {
  width: 100%;
  height: auto;
}