.flex-col {
  display: flex;
  flex-direction: column;
}
.tweets--pres-club {
  border-top: 1px solid #000;
  max-width: 1080px;
  margin: 0 20px;
  flex-direction: row;
}
.tweets--pres-club > * {
  width: 100%;
}
body.home .pres-club-container {
  padding: 60px 0;
}
.sidebar > .pres-club-container {
  border: 1px solid #bbb;
  padding: 20px 10px 0;
}
.section-title {
  text-align: center;
  color: inherit;
}
.pres-club-container .members-list {
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
}
.pres-club-container .members-list > .team-member {
  cursor: pointer;
  padding: 20px 0;
  display: none;
}
.pres-club-container .team-member .primary-info {
  text-align: center;
}
.pres-club-container .team-member .primary-info .img-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  margin: 0 auto;
}
.pres-club-container .team-member .primary-info .name-title h4 {
  margin: 0;
}
.pres-club-container .team-member .img-wrapper img {
  /* position: absolute; */
  /* height: auto; */
  /* left: 50%;
  top: 50%; */
  /* transform: translate(-50%,-50%); */
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
}
.full-details {
  text-align: left;
  background-color: #f7f8fa;
  border: 2px solid #ececed;
  padding: 20px;
  display: none;
  position: absolute;
  width: 90%;
  left: 5%;
  z-index: 99;
}
.member-details .close-details {
  float: right;
}
.member-details .position-title{
  font-weight: bold;
}
.member-details .socials > a {
  color: #00acef;
}

/* Override Autoptimize style that is not removing the actual featured-tweets style */
.chamber-tv-featured-tweet .featured-tweet {
  border-top: unset !important;
  max-width: unset !important;
  margin: unset !important;
}

/* Fix Mobile view (0 to 720px wide) of featured tweet block */
@media (max-width: 720px) {
  .chamber-tv-featured-tweet .featured-tweet iframe{
    width: 100% !important;
  }
}

@media (min-width: 721px) {
  .flex-2-col {
    flex-direction: row;
  }
  .tweets--pres-club {
    margin: 0 auto;
  }
  .tweets--pres-club > * {
    width: 50%;
  }
}