container {
  display: block;
  min-height: 100vh;
  width: 100%;
  max-width: 1080px;
  padding: 24px;
  margin: 0 auto;
}

.heading,
.desc {
  text-align: center;
}

.heading {
  color: #3E437B;
  font-size: 40px;
  font-weight: 700;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(160deg, #7209b7 25%, #0096c7 100%);
}

.desc {
  color: #707070;
  font-weight: 400;
}

.list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-right: -12px;
  margin-left: -12px;
  justify-content: center;
}

.card-wrap {
  display: block;
  width: 100%;
  flex-basis: 100%;
  padding: 12px;
  
  @media (min-width: 577px) {
    width: 50%;
    flex-basis: 50%;
  }
  
  @media (min-width: 841px) {
    width: 33.33333%;
    flex-basis: 33.33333%;
  }
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  color: #023e8a;
  text-decoration: none;
  transition: box-shadow 120ms ease, background-color 200ms ease;
}

a.card {
  &:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transition: box-shadow 200ms ease, background-color 200ms ease;
  }
  
  &:active {
    background-color: #f4f5f8;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    transition: box-shadow 200ms ease, background-color 200ms ease;
  }
}

.card-img {
  display: block;
  width: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 1em;
}

.card-speakers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: auto;
}

.speaker-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #fff;
  
  img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 999px;
    object-position: center 25%;
  }
  
  &:not(:first-of-type) {
    margin-left: -12px;
  }
  
  &.active {
    z-index: 12;
  }
}

.speaker-details {
  padding-left: 8px;
}

.speaker-name,
.speaker-role {
  margin: 0;
  padding: 0;
  color: #222;
}

.speaker-name {
	font-size: 20px;
	text-align: center;
	padding: 6px;
	color: #4766DD;
	font-variant: small-caps;
}

.speaker-role {
  margin-top: 4px;
  font-size: 14px;
  opacity: 0.75;
}

.card-title {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 15px;
	text-align: center;
	line-height: 20px;
}

.card-title small {
	color: #437B7F;
}

.flexBreak {
	flex-basis: 100%;
	width: 0;
}

.flexBreak hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}