/* =============================================
   seminar2 게시판 전용 스타일 (세미나 칩형)
   세미나 — 6컬럼 + 제목셀 다단(제목 + 장소/시간 칩)
   board.seminar.css 와 완전분리 (.seminar2-table 자기완결)
   ============================================= */

.seminar2-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

/* 컬럼 너비 — seminar 와 동일 비율 */
.seminar2-table col.b-col-num         { width: 7%; }
.seminar2-table col.b-col-category    { width: 12%; }
.seminar2-table col.b-col-title       { width: 41%; }
.seminar2-table col.b-col-date        { width: 12%; }
.seminar2-table col.b-col-presenter   { width: 14%; }
.seminar2-table col.b-col-affiliation { width: 14%; }

.seminar2-table thead th {
	text-align: center;
	padding: 10px 8px;
	border-top: 2px solid #333;
	border-bottom: 1px solid #ccc;
	font-weight: 600;
	font-size: 14px;
	background: #f8f8f8;
}

.seminar2-table tbody td {
	padding: 10px 8px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	vertical-align: middle;
	text-align: center;
}

.seminar2-table tbody tr.deleted td {
	text-decoration: line-through;
	color: #aaa;
}

.seminar2-table td.b-no-post {
	text-align: center;
	padding: 30px;
	color: #999;
}

/* === 제목셀 — 말줄임 해제, 제목(1줄) + 칩(다음줄) === */
.seminar2-table td.b-td-left {
	text-align: left;
	padding: 10px 12px;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	vertical-align: top;
}
.seminar2-table .b-title-text {
	display: block;
	font-weight: 500;
	line-height: 1.45;
	word-break: break-word;
}
.seminar2-table .b-chip-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 7px;
}
.seminar2-table .b-chip {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	padding: 2px 9px;
	border-radius: 13px;
	line-height: 1.6;
	white-space: nowrap;
}
.seminar2-table .b-chip i {
	font-style: normal;
	font-weight: 700;
	margin-right: 5px;
	opacity: .75;
}
.seminar2-table .b-chip-loc  { background: #eaf3ff; color: #1c5cae; }
.seminar2-table .b-chip-time { background: #fff1e6; color: #b5560a; }

@media (max-width: 768px) {
	.seminar2-table .b-chip-wrap { margin-top: 5px; }
}
