.image-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #949494;
    font-size: 1em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #525252;
}

.nav-separator {
    color: #d0d0d0;
    user-select: none;
}

.mobile-text {
    display: inline;
}

.desktop-text {
    display: none;
}

@media (min-width: 768px) {
    .mobile-text {
        display: none;
    }
    .desktop-text {
        display: inline;
    }
}

@media (max-width: 767px) {
    .image-nav button .nav-text {
        display: none;
    }
}
