/* ==============================
FORUM LIST / KATEGORIEN
============================== */

.forumcat {
max-width: 1260px;
margin: 34px auto 0 auto;
border-radius: 18px;
overflow: hidden;
background: rgba(255,255,255,0.94);
border: 1px solid rgba(58,48,45,0.12);
box-shadow: 0 18px 45px rgba(45,36,31,0.10);
box-sizing: border-box;
}

.forumcat-head {
min-height: 72px;
padding: 22px 30px;
background: #3a302d;
color: #f8f4ef;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
box-sizing: border-box;
}

.forumcat-title a {
display: block;
font-family: Georgia, serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: #f8f4ef;
text-decoration: none;
}

.forumcat-title a:hover {
color: #c9a764;
}

.forumcat-title span {
display: block;
margin-top: 6px;
color: rgba(248,244,239,0.65);
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
}

.forumcat-collapse {
flex: 0 0 auto;
opacity: 0.85;
}

.forumcat-collapse img {
display: block;
}

.forumcat-labels {
display: grid;
grid-template-columns: minmax(0, 1fr) 110px 110px 260px;
background: #2f2724;
color: #f8f4ef;
border-top: 1px solid rgba(255,255,255,0.08);
box-sizing: border-box;
}

.forumcat-labels > div {
padding: 15px 24px;
font-family: Georgia, serif;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
box-sizing: border-box;
}

.forumcat-label-count {
text-align: center;
}

.forumcat-label-last {
text-align: left;
}

.forumcat-forums {
background: rgba(255,255,255,0.74);
}

.forumrow {
display: grid;
grid-template-columns: 86px minmax(0, 1fr) 110px 110px 260px;
align-items: stretch;
min-height: 104px;
background: rgba(255,255,255,0.78);
border-bottom: 1px solid rgba(58,48,45,0.10);
box-sizing: border-box;
}

.forumrow:last-child {
border-bottom: 0;
}

.forumrow-icon {
display: flex;
align-items: center;
justify-content: center;
border-right: 1px solid rgba(58,48,45,0.08);
box-sizing: border-box;
}

.forum_status {
width: 48px;
height: 48px;
border-radius: 50%;
background-color: #3a302d;
box-shadow: 0 12px 24px rgba(45,36,31,0.18);
position: relative;
display: block;
}

.forum_status::before {
content: "✧";
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
color: #f8f4ef;
font-size: 20px;
line-height: 1;
}

.forumrow-main {
padding: 24px 22px;
box-sizing: border-box;
}

.forumrow-title a {
color: #c0a05b;
font-size: 17px;
font-weight: 700;
text-decoration: none;
}

.forumrow-title a:hover {
color: #8d6f39;
}

.forumrow-desc {
margin-top: 5px;
color: #2f2926;
font-size: 12px;
line-height: 1.55;
}

.forumrow-desc .smalltext,
.forumrow-desc small {
font-size: 11px;
}

.forumrow-count {
padding: 20px 12px;
border-left: 1px solid rgba(58,48,45,0.08);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #2f2926;
box-sizing: border-box;
}

.forumrow-count span {
display: block;
font-size: 18px;
font-weight: 700;
}

.forumrow-count small {
display: block;
margin-top: 5px;
color: rgba(47,41,38,0.52);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.forumrow-lastpost {
padding: 20px 24px;
border-left: 1px solid rgba(58,48,45,0.08);
color: #2f2926;
font-size: 12px;
line-height: 1.45;
display: flex;
align-items: center;
box-sizing: border-box;
}

.forumrow-lastpost a {
color: #8d6f39;
font-weight: 700;
text-decoration: none;
}

.forumrow-lastpost a:hover {
text-decoration: underline;
}

/* Falls unser Last-Post-Block schon aktiv ist */
.forumrow-lastpost .lastpost-box {
width: 100%;
}

.forumrow-lastpost .lastpost-title a {
color: #8d6f39;
font-weight: 700;
}

.forumrow-lastpost .lastpost-meta {
margin-top: 4px;
font-size: 11px;
color: rgba(47,41,38,0.72);
}

/* Alte Tabellenreste in der Forenliste neutralisieren */
.index-forums table.tborder {
display: none;
}

/* Responsive */
@media (max-width: 1000px) {
.forumcat-labels {
display: none;
}

```
.forumrow {
    grid-template-columns: 74px minmax(0, 1fr);
}

.forumrow-count,
.forumrow-lastpost {
    grid-column: 2;
    border-left: 0;
    border-top: 1px solid rgba(58,48,45,0.08);
    align-items: flex-start;
    text-align: left;
    padding: 14px 22px;
}

.forumrow-count {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

.forumrow-count small {
    margin-top: 0;
}
```

}

@media (max-width: 650px) {
.forumcat-head {
align-items: flex-start;
}

```
.forumcat-title a {
    font-size: 17px;
}

.forumrow {
    grid-template-columns: 1fr;
}

.forumrow-icon {
    display: none;
}

.forumrow-count,
.forumrow-lastpost {
    grid-column: 1;
}
```

}
