/* Custom styles for Balance Counting */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #C5A059;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Ghost required styles */
.kg-width-wide {
    grid-column: wide-start / wide-end;
}

.kg-width-full {
    grid-column: full-start / full-end;
}
