.role-note {
  margin-top: 22px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: #f2f7ff;
  font-size: 14px !important;
}

@media (min-width: 1051px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.hero-carousel { min-width: 0; }
.hero-slides { min-height: 455px; }
.hero-slide { display: none; animation: slide-fade .8s ease-in-out; }
.hero-slide.active { display: block; }
.carousel-controls { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.carousel-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff38;
  border-radius: 50%;
  background: #ffffff0b;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.carousel-arrow:hover { background: #ffffff20; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ffffff55;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.carousel-dots button.active { width: 28px; background: #45c7ff; }

@keyframes slide-fade {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 760px) {
  .hero-slides { min-height: 570px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
}
