/* .entry-content {
  :where(a:where(:not(.wp-element-button)):hover) {
    opacity: 0.6;
  }

  :where(a:where(:not(.wp-element-button))) {
    transition: all 0.1s ease-in-out;
    border-bottom: 1px solid var(--wp--preset--color--primary);
  }

  .wp-block-button {
    transition: all 0.1s ease-in-out;
  }

  .wp-block-button:hover {
    opacity: 0.8;
  }
}
*/
.entry-content p a {
  text-decoration: underline;
  transition: all 0.1s ease-in-out;
}
.entry-content p a:hover {
  opacity: 0.6;
}