﻿#editions a {
    text-decoration: none;
}

#editions img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.2rem;
    margin-top: -0.2rem;
}

#editions ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#editions .current {
    background-color: var(--secondary-color);
}

#editions .edition {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 0.125rem solid var(--secondary-color);
    border-radius: 0.2rem;
    width: 15rem;
}

#editions .edition:hover {
    box-shadow: 0 0 0.313rem 0 rgba(0, 0, 0, 0.2);
}

#editions h5 {
    font-weight: bold;
    font-size: 110%;
    color: var(--text-color);
}

#editions .current h5 {
    font-size: 180%;
    color: var(--primary-color);
}

#editions h5:hover {
    color: var(--primary-color);
}

#editions .current h5:hover {
    color: var(--text-color);
}
