#wiki-class__content {
    background: rgba(0, 0, 0, 0.5);
    padding-bottom: 48px;
}

#class-heading {
    margin: 48px 0;
}

#class-heading h1 {
    font-size: 26px;
    margin-bottom: 24px;
}

#race-heading {
	display: flex;
    align-items: center;
    gap: 16px;
}

#class-heading p {
    font-size: 16px;
}

.class {
	width: 100%;
	max-width: 176px;
	height: 184px;
	color: #fff;
	border-radius: 5px;
	position: relative;
	background-color: #101010;
	display: inline-block;
	text-align: center;
	background-position: center bottom;
	background-size: auto 100%;
	background-repeat: no-repeat;
}

.class::after {
	display: block;
	content: "";
	background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, #101010 100%);
	width: 100%;
	height: 80px;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0 0 5px 5px;
	z-index: 10;
}

.class-name {
    position: absolute;
    bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    z-index: 11;
    left: 0;
    right: 0;
}

#class-summary__table {
	font-size: 16px;
}

#class-desc__stat {
	max-width: 500px;
}

#class-image img {
	max-width: 100%;
}

#table_class tr {
    text-align: center;
}

#table_class td {
    text-align: center;
    vertical-align: top;
    width: 10%;
}

.divider {
    background: transparent url(../../images/wiki/divider.png) center bottom no-repeat;
    height: 10px;
	opacity: 0.5;
}

.arrow {
    background: transparent url(../../images/wiki/arrow.png) center bottom no-repeat;
    height: 16px;
	opacity: 0.5;
}

.hline {
    background: transparent url(../../images/wiki/hline.png) center bottom no-repeat;
    height: 1px;
	opacity: 0.5;
}

.hlineright {
    background: transparent url(../../images/wiki/hlineright.png) center bottom no-repeat;
    height: 1px;
	opacity: 0.5;
}

.hlineleft {
    background: transparent url(../../images/wiki/hlineleft.png) center bottom no-repeat;
    height: 1px;
	opacity: 0.5;
}

@media (max-width: 992px) {
	#wiki-class__content {
		text-align: center;
	}

	#wiki-class__content .class-row {
		display: flex;
		flex-direction: column;
	}

	#class-image {
		display: none;
	}

	#class-summary__table {
		width: 100%;
		text-align: center;
	}

	#class-desc__stat {
		margin: 32px 0;
	}

	.class-row {
		flex-direction: column;
	}
}