.ti-custom-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.ti-custom-dots .ti-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cfcfcf;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ti-custom-dots .ti-dot.active {
  background-color: #333333;
  transform: scale(1.15);
}

/* Style native Trustindex dots for consistency */
.ti-widget .ti-controls-dots,
.ti-widget .ti-controls-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.ti-widget .ti-controls-dots .dot,
.ti-widget .ti-controls-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cfcfcf;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.ti-widget .ti-controls-dots .dot.active,
.ti-widget .ti-controls-line .dot.active {
  background-color: #333333;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .ti-custom-dots {
    gap: 6px;
    margin-top: 10px;
  }
  .ti-custom-dots .ti-dot {
    width: 7px;
    height: 7px;
  }
  .ti-widget .ti-controls-dots,
  .ti-widget .ti-controls-line {
    gap: 6px;
    margin-top: 10px;
  }
  .ti-widget .ti-controls-dots .dot,
  .ti-widget .ti-controls-line .dot {
    width: 7px;
    height: 7px;
  }
}