.category-tabs-block .tab-menu {
    list-style: none;
    padding: 0;
    display: flex;
	gap: 10px;
	flex-wrap: nowrap;
}
.category-tabs-block .tab-menu li {
	width: 100%;
	text-align: center;
    cursor: pointer;
    border: 3px solid #fcc;
	padding: 10px 0;
    background: #f2f2f2;
}

.category-tabs-block .tab-menu li:nth-child(1) {
    border: 3px solid #f77;
}
.category-tabs-block .tab-menu li:nth-child(2) {
    border: 3px solid #77b;
}
.category-tabs-block .tab-menu li:nth-child(3) {
    border: 3px solid #bb7;
}
.category-tabs-block .tab-menu li:nth-child(4) {
    border: 3px solid #7b7;
}
.cat-info{font-weight:bold; color: #77b;}
.cat-patient{font-weight:bold; color: #bb7;}
.cat-recruit{font-weight:bold; color: #7b7;}
.cat-colum{font-weight:bold; color: #aaa;}

.category-tabs-block .tab-menu li.active {
    background: #fff;
    font-weight: bold;
}

.category-tabs-block .tab-content {
    padding: 10px;
}

.post-item {
    display: grid;
    grid-template-columns: 120px 120px 1fr;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
	border-bottom:solid 1px #000;
}
.post-date {
    color: #333;
    font-size: 0.9em;
	font-weight: bold;
    margin-right: 6px;
}
.more-link {
    margin-top: 10px;
}
.more-link .btn-more {
    display: inline-block;
    padding: 6px 12px;
	border:solid 1px #7799dd;
    background: #ddeeff;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}
.more-link .btn-more:hover {
    background: #eeffff;
}