/**
 * Committes Lists
 ****************/

.committees {
    width: 80%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
}

.committees .inner {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
}

.committees .inner > div {
    flex: 1 1 50%;
}

.committees h2,
.committees h3{
    color: var(--gray1);
    font-size: calc(var(--h3-main) - 5px);
    margin-bottom: 0;
}
.committees p {
    font-family: var(--font2);
    font-size: var(--p-small);
    font-weight: 400;
    line-height: 1.85;
}
.committees p strong {
    font-weight: 600;
}

.committees .end-body {
    text-transform: uppercase;
}

.committees .left-entry {
    border-left: 6px solid var(--forest1b);
    padding-left: 25px;
    padding-right: 45px;
    margin-bottom: 45px;
}
.committees .left-entry:nth-child(odd){
    border-color: var(--mustard);
}

.committees .right-entry {
    border-left: 6px solid var(--forest1b);
    padding-left: 25px;
    margin-bottom: 45px;
}
.committees .right-entry:nth-child(odd){
    border-color: var(--mustard);
}
