/******* Do not edit this file *******
Code Snippets Manager
Saved: Nov 17 2025 | 02:19:44 */
/* ==========================================================================
   Footer Links Underlines
   ========================================================================== */

.regular-underline a {
  display: inline-block; /* This lets us add padding */
  text-decoration: none; 
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s ease;
  
  /* * 1. Add padding to create space below the text.
   * 2. Tell the line to sit at the new 'bottom'.
   */
  background-position: left bottom; /* Or 'left 100%' */
  background-position: left calc(100% - 0.1rem);
}

.regular-underline a:hover {
  background-size: 100% 1px;
}