/* About Us page-specific styles */

/* Dots container alignment (desktop + mobile) */
[data-dots-for] {
  /* display: flex; */
  gap: 22px;
  align-items: center;
  justify-content: center;
}

/* Two-line layout (if many dots) */
[data-dots-for].carousel-dots-two-line {
  flex-wrap: wrap;
  max-width: 90%;
  gap: 12px 22px;
  margin-left: auto;
  margin-right: auto;
}

/* About dots: teal deep base, red when active; 20px size */
[data-dots-style="style-1"] .carousel-dot {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background-color: var(--color-teal-deep);
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
}
[data-dots-style="style-1"] .carousel-dot.active {
  background-color: var(--color-bold-red);
  border-color: var(--color-bold-red);
}



/* Mobile: smaller, fully rounded dots */
@media (max-width: 768px) {
  [data-dots-style="style-1"] .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
  }
}