.TagGroup_List_wrapper {
    display: flex;
    flex-direction: column;
}

.TagGroup_List_heading {
    font-weight: var(--font-weight-bold);
    letter-spacing: normal;
    color: var(--color-gray-700);
    line-height: normal;
    margin-bottom: 1.8rem;
    font-size: 20px;
}

.TagGroup_List_item_label {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding: 0px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.375;
}

.TagGroup_List_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(27.5rem, 1fr));
    gap: 0.8rem;
}

.TagGroup_List_item {
    display: flex;
    gap: 1.2rem;
    padding: 12px;
    font-size: var(--medium);
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--color-gray-300);
    cursor: pointer;
}

.TagGroup_List_item_label {
    font-weight: var(--font-weight-bold);
}

.TagGroup_List_item_tags {
    color: var(--color-gray-600);
    font-size: var(--xsmall);
    padding: 2px 0;
    max-width: 10rem;
}

.TagGroup_List_headerIcon {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
}
