.committee-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.committee-grid .committee {
  width: calc(33.3% - 20px);
  min-height: 300px;
  position: relative;
}
.committee-grid .committee.special {
  width: calc(50% - 20px);
  min-height: 350px;
}
.committee-grid .committee:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.committee-grid .committee.blue:after {
  background: rgba(76, 153, 183, 0.7);
}
.committee-grid .committee.orange:after {
  background: rgba(230, 136, 45, 0.7);
}
.committee-grid .committee.yellow:after {
  background: rgba(243, 186, 64, 0.7);
}
.committee-grid .committee.green:after {
  background: rgba(133, 175, 62, 0.7);
}
.committee-grid .committee .committee__button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--primary);
}
.committee-grid .committee .committee__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.committee-grid .committee .committee__button.active .committee__text, .committee-grid .committee .committee__button:hover .committee__text {
  top: 0;
}
.committee-grid .committee .committee__button.active .committee__heading, .committee-grid .committee .committee__button:hover .committee__heading {
  display: none;
}
.committee-grid .committee .committee__button.active::before, .committee-grid .committee .committee__button:hover::before {
  background: rgba(0, 0, 0, 0.7);
}
.committee-grid .committee .committee__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0%);
  transition: all 0.3s ease;
}
.committee-grid .committee .committee__heading {
  position: absolute;
  bottom: 40px;
  left: 0;
  color: var(--white);
  z-index: 9;
  width: 100%;
  padding: 0 20px;
}
.committee-grid .committee .committee__text {
  position: relative;
  z-index: 2;
  color: var(--white);
  top: 110%;
  transition: all 0.3s ease;
}
.committee-grid .committee .committee__text h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.committee-grid .committee .committee__text .committee__chairs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.committee-grid .committee .committee__text .committee__chairs li {
  padding: 0;
  margin: 0;
  margin-bottom: 8px;
}
.committee-grid .committee .committee__text .committee__chairs li .name {
  font-weight: 600;
}
.committee-grid .committee .committee__text .committee__chairs li .phone {
  font-weight: 400;
}
.committee-grid .committee .committee__text .committee__chairs li a {
  color: var(--white);
  text-decoration: underline;
}
.committee-grid .committee .committee__text .committee__chairs li .company {
  text-transform: uppercase;
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  .committee-grid .committee {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 850px) {
  .committee-grid .committee.special {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .committee-grid .committee {
    width: 100%;
  }
}
