/* Legal Links Styles */

@import url('variables.css');

.legal-links {
    margin-top: 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.8;
}

.legal-links a {
    color: var(--bright-gold);
    text-decoration: none;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #ffffff;
}

.legal-links span {
    color: var(--mid-gold);
    font-size: 8px;
}

.copyright {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-top: 5px;
}
