/* TOP BAR */
.top-bar {
    background: var(--navy);
    padding: 8px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em
}

.top-bar a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .2s
}

.top-bar a:hover {
    color: var(--gold)
}

.top-bar-left {
    display: flex;
    gap: 16px;
    align-items: center
}

.top-bar-right {
    display: flex;
    gap: 22px
}

.social-icons {
    display: flex;
    gap: 8px
}

.social-icons a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .2s
}

.social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold)
}