/* Dropdown hover fix — show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar1_menu-dropdown:hover .navbar1_dropdown-list {
    display: block !important;
  }
}

/* Tab cursor — clickable tabs should show pointer */
.w-tab-link {
  cursor: pointer;
}

/* Slider dot touch target fix — minimum 24x24px for accessibility */
.w-slider-dot {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Image elements should not cause layout shift */
img {
  height: auto;
}

/* Propagate tan background to full page when any child has the class
   (matches Webflow where background-color-tan is on <body>) */
.page-wrapper:has(.background-color-tan) {
  background-color: var(--background-tan);
}
