﻿.ly-header-homepage-links {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    font-weight: 700;
    font-size: clamp(16px, 1.5vw, 22px);
    text-align: center;
}

    .ly-header-homepage-links a {
        color: var(--ly-dark-red);
    }

        .ly-header-homepage-links a.active {
            color: #E74B33;
        }

.ly-homepage-links-mobile {
    display: none;
    width: 95%;
    max-width: 420px;
    margin-inline: auto;
    margin-top: 18px;
}

    .ly-homepage-links-mobile .ly-header-homepage-links {
        width: 100%;
        justify-content: space-between;
    }

.ly-homepage-links-learn {
    flex: 1;
}

.ly-homepage-links-learn .ly-header-homepage-links {
    justify-content: center;
}

@media screen and (max-width:1300px) {
    .ly-homepage-links-learn {
        display: none;
    }
}

@media screen and (max-width:723px) {
    .ly-homepage-links-mobile {
        display: block;
    }

    .ly-homepage-links-desktop {
        display: none;
    }
}