.artist-letter,
.artist-letter h2,
.artist-letter ul {
    break-inside: avoid;
    page-break-inside: avoid;
}


.artist-letter h2 {
    text-align: left;
    margin: 0;
    font-family: system-ui;
}

.artist-letters-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 80%;
}


.artist-letter ul {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.artist-letter li,
.artist-letter a {
    font-family: system-ui;
    font-size: 16px;
    margin-bottom: 5px;
    list-style-type: none;
    text-decoration: none;
    padding: 5px;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.artist-letter a {
    text-decoration: none;
    color: black;
}

.artist-letter li:hover,
.artist-letter a:hover {
    text-decoration: none;
    background-color: black;
    color: rgb(255, 255, 255);
}


@media (max-width: 1200px) {
    

        
}

@media (max-width: 820px) {
    .artist-letters-container {
        grid-template-columns: 1fr;
        width: 90%;
        gap: 0px;
    }


    .artist-letter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .artist-letter li {
        text-align: center;
        margin-bottom: 5px;
        margin-top: 0px;
        padding: 0px;
    }
}