/* --- PROTECTION FOR CATEGORY COLUMNS (Bottom of Forum Home) --- */
/* Ensure these columns are NEVER hidden by the mobile logic */
table#af_list td,
table#af_list td:nth-last-child(1),
table#af_list td:nth-last-child(2) {
display: table-cell !important;
width: 25% !important; /* Keep 4 columns or stack them */
visibility: visible !important;
}
/* On Mobile, stack them vertically as we planned */
@media screen and (max-width: 768px) {
table#af_list td.af_col_1,
table#af_list td.af_col_2,
table#af_list td.af_col_3,
table#af_list td.af_col_4 {
display: block !important;
width: 100% !important;
box-sizing: border-box !important;
}
}