.index-forum-wrapper {
	display: grid;
	margin: 20px;
	box-sizing: border-box;
}

.index-forum-title {
	grid-row: 1;
	grid-column: 2;
	display: flex;
	width: 500px;
	height: 30px;
	background: var(--main-accent);
	font-weight: bold;
	align-items: center; 
	justify-content: center;
	letter-spacing: 5px;
}

.index-forum-description {
	grid-row: 2;
	grid-column: 2;
	width: 500px;
	height: 95px;
	box-sizing: border-box; 
	padding: 10px;
	text-align: justify;
	border: 1px solid var(--main-accent);
}

.index-forum-description-text {
	height: 74px;
	overflow: auto;
	text-align: justify;
	margin-bottom: 10px;
}

.index-forum-stats {
	grid-row: 1 / span 2;
	display: flex;
	flex-direction: column;
	align-items: center; 
	justify-content: center;
}

.index-forum-stats-posts {
	display: flex;
	align-items: center; 
	justify-content: center;
	width: 110px;
	height: 50px;
	border: 2px solid var(--main-accent);
	margin-bottom: 17px;
}

.index-forum-stats-threads {
	display: flex;
	align-items: center; 
	justify-content: center;
	width: 110px;
	height: 50px;
	border: 2px solid var(--main-accent);
	
}

.index-forum-last-post {
	grid-row: 1 / span 2;
	grid-column: 5;
	width: 150px;
	display: flex;
	align-items: center; 
	border: 2px solid var(--main-accent);
	box-sizing: border-box;
	padding: 8px;
}

.index-last-post {
	font-size: 10pt;
	font-weight: bold;
}

.index-last-post-subject {
	width: 125px;
	text-overflow: ellipsis;
	overflow: hidden;
    white-space: nowrap;
}

.index-main-carousel,
.index-plot {
	display: inline-block;
	width: 49.5%;
	margin-top: 10px;
}

.index-plot {
	border: 2px solid var(--main-accent);
	box-sizing: border-box;
	padding: 10px;
	margin-left: 5px;
	height: 195px;
  	vertical-align: top;
  	overflow: auto;
	text-align: justify;
}