/* [게시물 리스트 스타일] */
.board-container {
    width: 100%;
    background-color: #000000;
}

/* 카테고리 탭 */
.board-tabs {
    display: flex;
    padding: 0 16px;
    border-bottom: 1px solid #1A1A1A;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.board-tabs::-webkit-scrollbar {
    display: none;
}

.board-tab {
    padding: 12px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    position: relative;
    cursor: pointer;
}

.board-tab.active {
    color: #FFFFFF;
    font-weight: 700;
}

.board-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #FFFFFF;
}

/* 게시글 아이템 (피드 형태) */
.post-item {
    padding: 20px 16px;
    border-bottom: 1px solid #1A1A1A;
    cursor: pointer;
    background-color: #000000;
    transition: background-color 0.2s ease;
}

.post-item:active {
    background-color: #111111;
}

/* 상단 프로필 및 카테고리 영역 */
.post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* 임시 아바타 배경 - 하늘색 계열 반전 느낌 */
    background: linear-gradient(135deg, #1d9bf0 0%, #0d5ea0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    font-size: 13px;
    font-weight: 500;
    color: #AAAAAA;
}

/* 게시글 제목 */
.post-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 8px;
    word-break: break-all;
}

/* 게시글 요약 (선택 사항) */
.post-summary {
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 하단 메타 영역 (좋아요, 댓글 아이콘) */
.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #888888;
    /* 다크 모드 대비를 위해 기존 #666에서 조금 밝게 상향 */
    margin-top: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    /* 숫자와 아이콘 사이 간격 조밀하게 */
    font-size: 13px;
    line-height: 1;
    /* 높이 맞춤 */
}

.meta-item .material-icons {
    font-size: 16px;
    margin-top: -2px;
    /* 아이콘 시각 보정 */
}

/* [글쓰기 플로팅 버튼 스타일 삭제됨] */