 /* Bottom */
 .footer-bottom {
     padding: 22px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 10px
 }

 .footer-bottom-left {
     font-size: 12px;
     color: var(--footer-muted);
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     align-items: center
 }

 .footer-bottom-left a {
     color: var(--footer-muted);
     text-decoration: none;
     transition: color .2s
 }

 .footer-bottom-left a:hover {
     color: var(--gold)
 }

 .footer-bottom-right {
     font-size: 12px;
     color: var(--footer-muted);
     display: flex;
     align-items: center;
     gap: 5px
 }

 .footer-bottom-right .gold {
     color: var(--gold)
 }