/* Community Boards Section Styles */
.comm_wrap {
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
    margin-top: 0;
}

.comm_wrap .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.comm_boards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 0;
}

.board_section {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.board_header {
    background: #f8f9fa;
    padding: 16px 20px;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board_title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin: 0;
    text-align: center;
}

.board_more {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.board_more::after {
    content: '›';
    display: inline-block;
    margin-left: 6px;
}

.board_content {
    padding: 0;
}

.board_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.board_item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 20px;
    position: relative;
}

.board_item:last-child {
    border-bottom: none;
}

.board_item:hover {
    background-color: #fafafa;
}

.item_link {
    text-decoration: none;
    color: #333;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 10px;
    width: 100%;
}

.item_bullet {
    width: 6px;
    height: 10px;
    background: url('../images/arr.png') no-repeat center center;
    background-size: contain;
}

.item_title {
    font-size: 14px;
    line-height: 1.4;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}

.item_title strong {
    font-weight: 500;
}

.item_meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.item_badges {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icon badges */
.icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
}

.icon-badge i {
    font-size: 12px;
}

.icon-badge.popular i {
    color: #ff6b35;
}

.icon-badge.private i {
    color: #6c757d;
}

.icon-badge.attachment i {
    color: #666;
}

.item_date {
    color: #999;
    font-size: 12px;
}

.empty_message,
.board_empty {
    text-align: center;
    padding: 40px 25px;
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .comm_boards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comm_wrap {
        padding: 40px 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .comm_wrap .container {
        padding: 0 15px;
    }
    
    .board_header {
        padding: 15px 20px;
    }
    
    .board_item {
        padding: 12px 20px;
    }
    
    .board_title {
        font-size: 16px;
    }
    
    .item_title {
        font-size: 13px;
    }
}