/* Center the forum-status icon against the complete row, including tall
   descriptions or last-post columns. Preserve existing status colours. */
#phpbb .forabg .rr-forum-row {
    position: relative;
}

#phpbb .forabg .rr-forum-row > dt,
#phpbb .forabg .rr-forum-row > dt > .list-inner {
    position: static;
}

#phpbb .forabg .rr-forum-row > dt > .list-inner {
    padding-inline-start: 80px;
}

#phpbb .forabg .rr-forum-row .rr-forum-status {
    position: absolute;
    inset: auto;
    inset-inline-start: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    font-size: 32px;
    line-height: 1;
    pointer-events: none;
}

#phpbb .forabg .rr-forum-row .rr-forum-status > i,
#phpbb .forabg .rr-forum-row .rr-forum-status > svg {
    position: static;
    margin: 0;
    font-size: inherit;
    line-height: 1;
    vertical-align: middle;
}

@media (max-width: 550px) {
    #phpbb .forabg .rr-forum-row > dt > .list-inner {
        padding-inline-start: 60px;
    }

    #phpbb .forabg .rr-forum-row .rr-forum-status {
        inset-inline-start: 8px;
        width: 30px;
        height: 30px;
        font-size: 28px;
    }
}
