/* WB7 — Final responsive/accessibility acceptance corrections.
   No brand colour, typography, content, SEO or layout-system authority is changed here. */

/* Preserve the visual slideshow indicators while giving each control a 44×44px hit area. */
.slideshow-dot {
  position: relative;
  box-sizing: border-box;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.slideshow-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,246,228,.58);
  background: rgba(255,246,228,.24);
  transform: translate(-50%, -50%);
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.slideshow-dot.is-active::after {
  width: 30px;
  background: var(--brand-gold, #C9A24D);
  border-color: var(--brand-gold, #C9A24D);
  transform: translate(-50%, -50%) translateY(-1px);
}
.slideshow-dot:focus-visible {
  outline: 3px solid var(--brand-gold, #C9A24D);
  outline-offset: 1px;
}

/* Video transport is an actual button, so keep its target comfortably tappable. */
.captivating-video-toggle {
  min-height: 44px !important;
  min-width: 88px;
}

/* Footer analytics preference control is a button, not passive text. */
.p8-privacy-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-block: .35rem;
  margin-block: .08rem;
}
