#brxe-bwdvjq .splide__arrow { display: none !important; }

/* ===== HERO ANIMATIONS v2 ===== */

/* Button liquid fill */
.hero__btn-outline {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition: border-color 0.3s ease-out, color 0.3s ease-out !important;
}
.hero__btn-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: #E0C097;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s cubic-bezier(0.625, 0.05, 0, 1);
  z-index: -1;
}
.hero__btn-outline:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.hero__btn-outline:hover {
  border-color: #E0C097 !important;
  color: #0f1424 !important;
}

/* Card image teal overlay */
.frame-186__img {
  position: relative !important;
  overflow: hidden !important;
}
.frame-186__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #006d77;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 9px;
}
.frame-186__row:hover .frame-186__img::after {
  opacity: 0;
}

/* Card text/arrow hover */
.frame-186__tag {
  transition: transform 0.35s ease, color 0.35s ease;
}
.frame-186__desc {
  transition: transform 0.35s ease, color 0.35s ease;
}
.frame-186__arrow {
  transition: transform 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}
.frame-186__row:hover .frame-186__tag {
  transform: translateY(-2px);
}
.frame-186__row:hover .frame-186__desc {
  transform: translateY(-1px);
}
.frame-186__row:hover .frame-186__arrow {
  transform: translateX(5px);
}

/* Card row */
.frame-186__row {
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}
.frame-186__row:hover {
  background-color: rgba(0,109,119,0.05);
}