.lists {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	margin: 25px;
}

.lists .tcat {
color: var(--headings-body);
    margin-bottom: 20px;
    font-size: 18px;
}

/*         Menu        */
        
        .lists_menu {
            width: 20%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: var(--box-postcont);
            align-items: flex-start;
}

.lists_menu-head {
            height: 62px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--box-body);
}

.lists_menu-head a {
		 color: var(--headings-body);
}

.lists_menu-head a:hover {
		 color: var(--box);
}

.lists_menu-item {
            height: 25px;
            width: 90%;
            margin: 0 auto;
            padding: 20px 15px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
}

.lists_menu-item a {
	color: var(--dunkeltext);
}

.lists_menu-item a:hover {
	color: var(--headings-header);
}


/*         Content       */
        
        
        .lists_content {
            width: 80%;
            box-sizing: border-box;
            background: var(--box-postcont);
}

.lists_content-head {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--headings-body);
    font-size: 20px;
    transition: 0.5s;
    height: 61px;
    /* border-bottom: 1px solid; */
    background: var(--box-body);
}

.lists_content-description {
            padding: 25px;
            text-align: justify;
            line-height: 180%;
}

.lists_content-bit {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-evenly;
            gap: 20px;
            padding-top: 0px;
}

.lists_content-block {
            padding: 25px;
            padding-top: 0px;
			min-width: 20%;
}

.lists_content-item {
            margin-bottom: 5px;
}