.cp_recent_list {
    display: grid;
    gap: 5px;
}

.cp_recent_item {
    background: rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(80,70,60,0.10);
    padding: 6px 6px;
}

/* Titel */
.cp_recent_subject {
    display: block;
    color: #514940 !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 0.8px;
    font-weight: bold;
    line-height: 1.4;

    /* wichtig gegen overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Meta jetzt UNTEREINANDER statt nebeneinander */
.cp_recent_meta {
    display: block;
    margin-top: 3px;
    font-size: 8px;
    opacity: .65;
    line-height: 1.4;
}

/* Forum */
.cp_recent_forum {
    display: block;
}

/* User */
.cp_recent_user {
    display: block;
    opacity: .8;
}

/* ganz wichtig → verhindert horizontales scrollen */
.cp_recent_item,
.cp_recent_subject,
.cp_recent_meta {
    max-width: 100%;
    overflow: hidden;
}