.destination-video video {
  width: 100%;
  max-width: 900px;   /* videon blir inte bredare än 900px */
  height: auto;
  display: block;
  margin: 0 auto 40px; /* centrerar och ger luft under */
  border-radius: 12px; /* rundade hörn */
  box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* snygg skugga */
}

.guide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover; /* beskär kanterna om bilden inte matchar exakt */
}

.destination-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.destination-caption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
  line-height: 1.4;
}