/* Стилі сторінки туру. Підключається в tour.html перед {{ block.super }},
   тож new.css лишається останнім і за потреби перекриває. */

/* Підпис фото в галереї.
   Ховаємо через opacity, а не display:none — інакше він зникне
   і зі скрінрідера, заради якого його й додавали. */
.fotorama__caption {
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.fotorama:hover .fotorama__caption,
.fotorama:focus-within .fotorama__caption {
  opacity: 1;
}

.fotorama__caption__wrap {
  background: rgba(0, 0, 0, .65);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.4;
}

/* На сенсорних екранах наведення немає — показуємо постійно. */
@media (hover: none) {
  .fotorama__caption { opacity: 1; }
}

/* Список вхідних квитків у блоці деталей туру */
.tour-tickets {
  margin: 4px 0 12px 0;
  padding-left: 22px;
}
.tour-tickets li {
  line-height: 1.6;
}
.tour-tickets small {
  color: #5f5f5f;
}
.tour-tickets em {
  color: #5f5f5f;
  font-size: 13px;
}

.price-private-hint {
  color: #5f5f5f;
}
