.committee-template {
    color: #000000d6;
    padding: 0px 0 30px;
    
}
.committee-two-columns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    /* Ensure columns align left/right */
}
.committee-column {
    flex: 1 1 50%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
}
.committee-group {
    /* background: #f8f9fa; */
    
}
.committee-group-title {
    font-size: 20px;
    color: #0b4dc7;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
   
}
.committee-block {
    background: #F5F5F5;
    margin-bottom: 20px;
    padding: 18px 5px 18px 20px;
}
.committee-title {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
.committee-person {
    font-size: 14px;
    color: #222;
   
}
.committee-affiliation {
    color: #555;
    font-size: 13px;
    margin-left: 8px;
}
.committee-list {
    list-style: none;
    padding: 0;
    margin: 0 !important;
}
.committee-list li {
    margin: 0 0 8px ;
    font-size: 14px;
}
.committee-list li:last-child {
    border-bottom: none;
}
/* Responsive for mobile */
@media (max-width: 900px) {
    .committee-two-columns {
        flex-direction: column;
        gap: 0;
    }
    .committee-column {
        max-width: 100%;
    }
  
}
