/* Shared MENU UI refinements. Applied to all 40 language routes. */
::selection {
  background: #c8c1b7;
  color: #1f1d1a;
  text-shadow: none;
}

::-moz-selection {
  background: #c8c1b7;
  color: #1f1d1a;
  text-shadow: none;
}

.mahina-page-index-chevron {
  width: 20px;
  height: 20px;
  opacity: 0.92;
  filter: drop-shadow(0 1px 1px rgba(31, 29, 26, 0.18));
  transform-origin: 50% 50%;
  animation: mahina-page-index-chevron-nudge 4.8s ease-in-out infinite;
}

@keyframes mahina-page-index-chevron-nudge {
  0%, 68%, 100% { transform: translateY(0); }
  76% { transform: translateY(3px); }
  83% { transform: translateY(0); }
  89% { transform: translateY(2px); }
  94% { transform: translateY(0); }
}

/* The caption identifies the existing film as Summer 2026 reference footage. */
.season-course-media figcaption {
  display: flex;
}

@media (max-width: 720px) {
  .season-course-media {
    margin-right: -20px;
    margin-left: -20px;
  }
}

@media (max-width: 390px) {
  .season-course-media {
    margin-right: -16px;
    margin-left: -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mahina-page-index-chevron {
    animation: none !important;
    transform: none !important;
  }
}