.home-page > .forums-home {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    background-color: #222222;
    box-sizing: border-box;
    padding: 20px;
}

.forums-home > .forum-section {
    flex: 0 1 48%;
    width: 100%;
    background: rgb(28, 29, 34);
    padding: 20px;
    border-radius: 2px;
    margin: 0 auto 20px auto;
    backdrop-filter: blur(6px);
    box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.18);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 31.3vh;
}

.forums-home > .forum-section > .title {
    color: rgb(167, 167, 167);
    margin: 0 0 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.forums-home > .forum-section > .forum-tabs {
    height: fit-content !important;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);

    position: relative;
}

.forums-home > .forum-section > .desc {
    color: gray;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forums-home > .forum-section > .forum-tabs > .tab.changelog {
    position: relative !important;
}

.forums-home > .forum-section > .forum-tabs > .tab {
    background: #2a2d34;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 90px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
    margin-bottom: 10px;
    position: relative !important;
}

.forums-home > .forum-section > .forum-tabs > .tab i {
    font-size: 24px;
    color: #ffffff;
    margin-left: 10px;
    margin-right: 4px;
}

.forums-home > .forum-section > .forum-tabs > .tab:hover {
    background: #272a30;
    cursor: pointer;
}

.forums-home > .forum-section > .forum-tabs > .tab > .text {
    margin-left: 8px;
    width: 99%;
}

.forums-home > .forum-section > .forum-tabs > .tab > .text > .title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.forums-home > .forum-section > .forum-tabs > .tab > .text > .change {
    width: fit-content;
    padding: 5px;
    background-color: rgba(var(--primary));
    color: #bababa;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
}

.forums-home > .forum-section > .forum-tabs > .tab > .text > .change > .changeicon {
    font-size: 14px;
	color: rgba(var(--foxblue));
	background-color: rgb(42, 45, 52);
	border-radius: 3px;
	padding: 6px 5px;
    margin-left: -1px;
}

.forums-home > .forum-section > .forum-tabs > .tab > .text > .desc {
    color: #f6f6f6;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
}

.forums-home > .forum-section > .forum-tabs > .tab > .underline {
    width: 9%;
    height: 3px;
    border-radius: 3px;
    margin: 5px 0 3px 0;
}

.forums-home > .forum-section > .forum-tabs > .tab > .underline.green {
    background-color: green;
}

.forums-home > .forum-section > .forum-tabs > .tab > .underline.red {
    background-color: rgb(176, 2, 2);
}

.changelog {
    height: fit-content !important;
}

.changelog > .text > .data {
    margin-top: 5px;
    color: #ffffff8c;
    font-size: 12px;
    max-height: 25vh;
    overflow: hidden;
    width: 100%;
    max-width: 20vw;

    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.changelog > .text > .creator {
    width: 95%;
    height: 3.5vh;
    margin: 0 auto;
    border-top: 1px solid #80808059;
    display: flex;
    position: relative;
    align-items: center;
}

.changelog > .text > .creator > .name {
    color: white;
    font-size: 12.5px;
    height: 90%;
    display: flex;
    align-items: center;
}

.changelog > .text > .creator > .name span {
    margin-left: 0.2vw;
}

.changelog > .text > .creator > .name img {
    display: flex;
    align-items: center;
    height: 80%;
    border-radius: 999px;
}

.changelog > .text > .creator > .date {
    color: gray;
    font-size: 10px;

    position: absolute;
    right: 5px;
}