#forum-wrapper {
    width: 100%;
    padding: 0 2% 25px;
}

h1 {
    float: left;
    width: 100%;
    padding: 0 15px 10px;
    margin-bottom: 5px;
    box-sizing: border-box;
    font-size: 22px;
    border-bottom: 1px solid #d3d3d3;
}

.forum-category-empty {
    text-align: center;
    padding: 30px 0 60px;
    font-size: 19px;
}

.forum-section .forum-category .forum-category-title {
	float: left;
    width: calc(100% - 100px);
    padding: 0 5px 5px 0;
    box-sizing: border-box;
}

.forum-section .forum-category .forum-category-title p > span {
	font-size:11px;
    color: #9b9b9b;
    padding-left: 5px;
}


.forum-section .forum-category .forum-category-title h3 a {
    float: left;
    width: 100%;
    font-size: 14px;
    color: #b4453b;
    font-weight: bold;
	text-align: left;
}

.forum-section .forum-category .forum-category-statistics {
    float: right;
    width: 100px;
    text-align: center;
    color: #5a5a5a;
    font-size: 12px;
    background: #fafafa;
    border-radius: 5px;
    padding: 4px 0;
    line-height: 1.5;
}

.forum-section .forum-category .forum-category-statistics span {
    font-size: 13px;
}

.forum-section .forum-category .forum-category-lastPost {
    float: left;
    width: 100%;
    padding: 3px 0 0;
    text-align: right;
}

.forum-section .forum-category .forum-category-lastPost p {
    float: right;
    width: 67%;
    max-width: 260px;
    font-size: 13px;
    text-align: center;
}

.forum-section .forum-category .forum-category-lastPost p > span {
    font-size: 11px;
    color: #9b9b9b;
    padding-left:5px;
}

.forum-category-lastPost-text{
    float: left;
    width: calc(100% - 260px);
    min-width: 33%;
    color: #5a5a5a;
    font-size: 12px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


@media screen and (min-width: 600px)
{
	.forum-section .forum-category {
		float: left;
		width: 100%;
		border-bottom: 1px solid #00000012;
		padding: 15px;
		box-sizing: border-box;
		display:grid;
        grid-template-columns: auto 120px calc(115px + 15%);
		align-items: center;
	}

	.forum-section .forum-category .forum-category-title {
		width: unset;
		padding:0;
		margin:0;
	}

    .forum-section .forum-category .forum-category-title h3 a {
        font-size: 16px;
    }

	.forum-section .forum-category .forum-category-statistics {
		width: unset;
		padding:0;
		margin:0;
		background: none;
		font-size: 13px;
	}
	
	.forum-section .forum-category .forum-category-lastPost {
		width: unset;
		padding:0;
		margin:0;
	}

    .forum-category-lastPost-text,
    .forum-section .forum-category .forum-category-lastPost p {
        width: 100%;
        text-align: right;
    }
}

@media screen and (min-width: 900px)
{

}