.top-text {
  background-color: var(--darkColor);
  color: #FFFFFF;
}
.top-text__inner {
  padding: 50px 25px;
  max-width: 1280px;
  margin: 0 auto;
}
.top-text__inner p {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 600;
  padding-left: 25px;
  border-left: 4px solid var(--highlightColor);
}
@media (min-width: 768px) {
  .top-text__inner {
    padding: 50px;
  }
  .top-text__inner p {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 37px;
    line-height: 2.3125rem;
    padding-left: 50px;
    border-left: 8px solid var(--highlightColor);
  }
}

.team-group {
  margin-bottom: 50px;
}
.team-group:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .team-group {
    margin-bottom: 70px;
  }
}
@media (min-width: 1280px) {
  .team-group {
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .team-group .group-title {
    margin-bottom: 70px;
  }
}
@media (min-width: 1280px) {
  .team-group .group-title {
    margin-bottom: 100px;
  }
}
.team-group .attorneys-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-group .attorneys-grid li {
  margin-bottom: 50px;
}
.team-group .attorneys-grid li a {
  color: var(--text);
}
.team-group .attorneys-grid li img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.team-group .attorneys-grid li .name {
  font-weight: 300;
  margin-bottom: 5px;
}
.team-group .attorneys-grid li .role {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 32px;
  line-height: 2rem;
  display: block;
  font-weight: bold;
}
.team-group .attorneys-grid li .bio {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 24px;
  line-height: 1.5rem;
  display: inline-block;
  color: var(--highlightColor);
  border-bottom: 3px solid var(--highlightColor);
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .team-group .attorneys-grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .team-group .attorneys-grid li {
    flex: 0 0 48%;
  }
}
@media (min-width: 1280px) {
  .team-group .attorneys-grid li {
    flex: 0 0 31%;
  }
}
