.article--subjects {
    background-color: #faf1f2;
}

.article--subjects .article__heading {
    text-align: center;
}

.--subjects .postList__list {
    margin: 0 auto 4rem;
    padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: 1rem;
    background-color: #fff;
    list-style: '';
}

.--subjects .postListPost {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1rem;
}

.--subjects .postListPost:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.--subjects .postListPost::after {
    margin: 0 .5rem;
    font-family: 'icons';
    content: '\2192';
}

.--subjects .postListPost:hover::after {
    color: #a64758;
}

.--subjects .postListPost__title {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    text-wrap: balance;
    hyphens: auto;
}

.--subjects .postListPost:hover .postListPost__title {
    color: #a64758;
    text-decoration: underline;
}

@media (min-width: 900px) {
    /* Divide the list into 2 columns to prevent the list from becoming very long */
    .--subjects .postList__list:has(> :nth-child(10)) {
        columns: 2;
        gap: 3rem;
    }
}
