.category-posts-toggle__header {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-top: 1px solid #7f7c80;
    border-bottom: 1px solid #7f7c80;
}

.category-posts-toggle__title {
    font-family: "Barlow Condensed", Sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.375rem;
    color: #054067ff;
    margin: 0;
}

.category-posts-toggle__icon {
    transition: transform 0.3s ease;
}

.category-posts-toggle.is-collapsed .category-posts-toggle__icon {
    transform: rotate(180deg);
}


.category-posts-toggle__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-posts-toggle__list li.category-posts-toggle__item {
    border-bottom: 1px solid #7f7c80;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-posts-toggle__list li.category-posts-toggle__item img {
    width: 0.875rem;
}


#content .category-posts-toggle__link {
    font-family: "Barlow Condensed", Sans-serif;
    font-weight: 700;
    font-style: italic;
    text-decoration: none;
    color: #009ee0ff;
    transition: color 0.2s;
    font-size: 1.25rem;
    line-height: 2.4em;
    text-transform: uppercase;
}

.category-posts-toggle__link:hover {
    color: #0073aa;
}