/*/////////////////////////////////////////////////////////*/
/* 歷屆理監事 - Table 版本 */
/*/////////////////////////////////////////////////////////*/

.directorsArea {
    margin-bottom: 2.5rem;
}

.directorsArea .tit {
    font-size: 1.375em;
    font-weight: bold;
    color: #777;
    line-height: 1.5;
    margin-bottom: 10px;
}

.directorsTable {
    width: 100%;
    border-collapse: collapse;
    /* border: 1px solid #bebebe; */
    margin-bottom: 1.875rem;
    /* 建議開啟 fixed，這會讓寬度百分比分配更精準 */
    table-layout: fixed; 
}

/* 大標題（第X屆） */
.table-main-tit {
    background-color: #f4f4f4;
    padding: 10px;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    border: 1px solid #bebebe;
    color: #333;
}

/* 左側職稱欄：設定為 20% */
.directorsTable th.title {
    background-color: #ffffff;
    font-weight: normal;
    font-size: 1.25em;
    padding: 10px;
    border: 1px solid #bebebe;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box; 
}

/* 右側內容欄：自動佔滿剩餘空間 (80%) */
.directorsTable td.content {
    padding: 10px 15px;
    border: 1px solid #bebebe;
    font-size: 1.25em;
    line-height: 1.6;
    color: #333;
	text-align: left;
    background-color: #fff;
    word-break: break-all; 
}
/* 針對有兩組數據的特殊處理（第十一屆） */
.split-cell {
    padding: 5px 0;
}
.split-cell:not(:last-child) {
    border-bottom: 1px dashed #ccc; /* 兩組數據間的虛線分隔 */
    margin-bottom: 5px;
}

/* 手機版 RWD 調整 */
@media (max-width: 990px) {
    .directorsTable th.title {
        
        font-size: 1em;
        padding: .5rem .3125rem;
    }
    .directorsTable td.content {
        font-size: 1em;
        padding: 8px;
    }
    .table-main-tit {
        font-size: 1.25em;
    }
}