/*
 * Hover effects extracted from the inline onmouseover/onmouseout attributes
 * on the PHP pages. React Server Components cannot carry event handlers, and
 * these were pure style toggles, so they became CSS classes instead. The
 * transition properties come from the elements' own inline styles.
 */
.dwx-hover-1:hover {
  color: #fa4e4e !important;
}

.dwx-hover-2:hover {
  border-color: #fa4e4e !important;
  transform: translateY(-5px) !important;
}
