/* ===============================
   GRUND RESET (OHNE TABELLEN ZU ZERSTÖREN)
================================ */

.forumh {
    width: 940px!important;
    margin: 0 auto!important;
    border: 0!important;
}

.forumh ul {
    margin: 0!important;
    padding: 0!important;
}

/* ===============================
   KATEGORIE BANNER
================================ */

.cp_cat_wrap {
    width: 940px;
    margin: 30px auto 14px auto;
}

.cp_cat_banner {
    height: 105px;
    background-image: var(--kategorieimg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cp_cat_banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(227,226,221,0.45);
}

.cp_cat_banner span {
    position: relative;
    z-index: 2;
    font-size: 38px;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: #5f5648;
}

.cp_cat_banner small {
    position: relative;
    z-index: 2;
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #7e735d;
}

/* ===============================
   FORUM KARTEN
================================ */

.cp_forum {
    width: 940px;
    min-height: 140px;
    margin: 14px auto;
    display: grid;
    grid-template-columns: 54px 1fr 230px;
    gap: 12px;
    background: #dedcd6;
    padding: 14px;
    box-sizing: border-box;
    border-top: 1px solid #c6c2b8;
    border-bottom: 1px solid #c6c2b8;
}

/* STATUS LINKS */

.cp_forum_status {
    min-height: 112px;
    background: #e6e4de;
    border-left: 5px solid #7e735d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7e735d;
    font-size: 18px;
}

/* HAUPTBEREICH */

.cp_forum_main {
    background: #e6e4de;
    border: 1px solid #d0cdc5;
    padding: 15px 18px;
    box-sizing: border-box;
    min-height: 112px;
}

.cp_forum_label {
    display: inline-block;
    background: #7e735d;
    color: #deddd9;
    padding: 3px 8px;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cp_forum_main h3 {
    margin: 0 0 9px 0;
}

.cp_forum_main h3 a {
    color: #5f5648;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
}

.cp_forum_main h3 a:hover {
    color: #7e735d;
}

.cp_forum_desc {
    font-size: 12px;
    line-height: 18px;
    color: #3e3e3e;
    margin-top: 4px;
}

/* ===============================
   SUBFOREN (CHIPS)
================================ */

/* ===============================
   ZONEN SCROLLBAR (HORIZONTAL)
================================ */

.cp_forum_subs {
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 4px;
}

/* Scrollbar (dezent) */

.cp_forum_subs::-webkit-scrollbar {
    height: 4px;
}

.cp_forum_subs::-webkit-scrollbar-track {
    background: #e6e4de;
}

.cp_forum_subs::-webkit-scrollbar-thumb {
    background: #7e735d;
}

/* Inhalt */

.cp_forum_subs .forumn_re {
    display: inline-flex!important;
    flex-wrap: nowrap!important;
    gap: 6px!important;
}

/* einzelne Chips */

.cp_forum_subs a,
.cp_forum_subs .forumn_re a {
    display: inline-flex!important;
    align-items: center;
    background: #d1cec6;
    color: #6d6251;
    border: 1px solid #c6c2b8;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 10px;
    min-height: 26px;
    white-space: nowrap;
}

/* Icons */

.cp_forum_subs a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f3c5";
    margin-right: 6px;
    font-size: 9px;
    color: #7e735d;
}

/* Hover */

.cp_forum_subs a:hover {
    background: #7e735d;
    color: #deddd9;
}

.cp_forum_subs a:hover:before {
    color: #deddd9;
}
/* ===============================
   LASTPOST
================================ */

.cp_forum_last {
    background: #e6e4de;
    border: 1px solid #d0cdc5;
    border-left: 4px solid #7e735d;
    padding: 15px 12px;
    min-height: 112px;
    text-align: center;
    font-size: 10px;
}

.cp_forum_last span {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7e735d;
    margin-bottom: 8px;
}

/* ===============================
   HOVER
================================ */

.cp_forum {
    transition: 0.25s ease;
}

.cp_forum:hover {
    transform: translateY(-2px);
}

/* ===============================
   SUBFOREN / ZONEN ALS SAUBERE CHIPS
================================ */

.cp_forum_subs {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
    width: 564px;
}

.cp_forum_subs .forumn_re {
    display: flex!important;
    flex-wrap: wrap!important;
    gap: 6px!important;
    width: 100%!important;
    max-width: 100%!important;
    margin: 0!important;
    padding: 0!important;
}

.cp_forum_subs a,
.cp_forum_subs .forumn_re a,
.cp_forum_subs .forumn_re strong a {
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    background: #d1cec6!important;
    color: #6d6251!important;
    border: 1px solid #c6c2b8!important;
    font-size: 7px!important;
    line-height: 12px!important;
    letter-spacing: 1.5px!important;
    text-transform: uppercase!important;
    padding: 6px 8px!important;
    margin: 0!important;
    max-height: 24px!important;
    max-width: 145px!important;
    box-sizing: border-box!important;
    text-align: center!important;
    white-space: normal!important;
    word-break: normal!important;
}

.cp_forum_subs a:before,
.cp_forum_subs .forumn_re a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f3c5";
    margin-right: 5px;
    font-size: 8px;
    color: #7e735d;
    flex-shrink: 0;
}

.cp_forum_subs a:hover,
.cp_forum_subs .forumn_re a:hover {
    background: #7e735d!important;
    color: #deddd9!important;
}

.cp_forum_subs a:hover:before,
.cp_forum_subs .forumn_re a:hover:before {
    color: #deddd9!important;
}