:root {
  --taxcomm-primary-color: #03334A;
}

.taxcomm-personnel {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-template-areas: "bio desc";
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.taxcomm-personnel:nth-of-type(even) {
  grid-template-columns: 1fr 30%;
  grid-template-areas: "desc bio";
}

.taxcomm-personnel--bio {
  grid-area: bio;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
}

.taxcomm-personnel--description {
  grid-area: desc;
  background-color: var(--taxcomm-primary-color);
  color: white;
}

.taxcomm-personnel--bio picture {
  display: flex;
  justify-content: center;
}

.bg-navy {
    background-color: var(--taxcomm-primary-color);
    color: white;
}