/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 30 2025 | 10:59:24 */
.wp-block-button__link{

  transition: all 0.3s ease;
}

.wp-block-button__link:hover {
  /*: #C5A859 !important;  text changes to accent */
  /*background-color: transparent !important; removes solid background */
	  transform: translateY(-3px); /* subtle lift */
}

.rudr-category-filter--links span {
  display: flex;
  flex-wrap: wrap; /* allows items to wrap to next line */
  justify-content: center; /* center the links */
  gap: 1rem; /* spacing between links */
}

.rudr-category-filter--links span a {
  text-decoration: none;
text-transform: uppercase;
  margin: 0;
  padding: 0.3rem 0.6rem; /* optional: add some padding for clickable area */
  display: inline-block;
  text-align: center;
 transition: color 200ms ease-in-out;
}
.rudr-category-filter--links span a:hover {
color: #C5A859;
}
/* Responsive: on mobile, 2 per row */
@media (max-width: 600px) {
  .rudr-category-filter--links span a {
    flex: 1 1 45%; /* two links per row */
  }
}
