/* [[[ General Section Elements ]]] */

.sec__heading {
  margin-top: 0;
}

.sec__branding {
  height: 48px;
  margin: 0 0 24px;
}

.sec__preheading,
.sec__subheading {
  display: block;
  font-size: var(--body-text-md);
}

.sec__preheading {
  font-weight: 700;
  margin: 0 0 12px;
  color: #289dd7;
  text-transform: uppercase;
}

.sec__subheading {
  margin: -8px 0px 16px;
  font-weight: 600;
}

.sec__subtext {
  display: block;
  font-size: var(--body-text-lg);
}

.sec__cutoff {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media (max-width: 767px) {
  .sec__preheading,
  .sec__subheading { font-size: var(--body-text-lg); }
}



/* [[[ Feature Lists ]]] */

.feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 36px 48px;
  margin: 48px 0 0;
}

.feature__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.feature__icon {
  width: 36px;
  height: 36px;
  margin: 0 0 16px;
}

.feature__name {
  margin-top: 0;
}

.feature__description.lg { font-size: var(--body-text-lg); }

.feature__content {
  display: flex;
  flex-direction: column;
}

.feature__cta { margin-top: 12px; }



/* [[[ Cards ]]] */

/* Base */

.card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: var(--background-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--outer-shadow-1);
  border: none;
  overflow: hidden;
}

.card > * { flex: 1 !important; }

/* Colors */

.card.royal,
.card.orange,
.card.purple,
.card.charcoal { color: var(--text-light); }
.card.royal { background-color: var(--royal); }
.card.orange { background-color: var(--orange); }
.card.purple { background-color: var(--purple); }
.card.charcoal { background-color: var(--charcoal); }

/* Content */

.card__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px;
}

.card__inner.middle { justify-content: center; }
.card__inner.center { align-items: center; }

.card__image {
  min-height: 440px;
  height: 100%;
  width: 50%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .card__inner { padding: 36px; }
  .card__image { height: 240px; }
}

@media (max-width: 767px) {
  .card { flex-direction: column; }
  .card__image { width: 100%; }
}

@media (max-width: 639px) {
  .card__inner { padding: 36px 20px; }
}



/* [[[ CTA Banner ]]] */

.banner-cta__wrapper {
  display: flex;
  /*
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  */
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.banner-cta__heading {
  margin: 0;
}



/* [[[ Leadership ]]] */

.leader__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.leader__list.lg {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.leader__content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.leader__list.lg .leader__content {
  flex-direction: column;
}

.leader__headshot {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.leader__list.lg .leader__headshot {
  width: 100%;
  height: 320px;
}

.leader__info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 24px;
}

.leader__list.lg .leader__info {
  justify-content: flex-start;
}

.leader__name {
  display: block;
  margin: 0 0 2px;
}

.leader__title {
  display: block;
  margin: 0;
  font-size: var(--body-text-sm);
}

.leader__list.lg .leader__title {
  margin: 0 0 8px;
}

.leader__bio {
  margin: 0;
  font-size: var(--body-text-sm);
}

.leader__social {
  position: absolute;
}

@media (max-width: 767px) {
  .leader__list.lg .leader__headshot {
    height: 360px;
  }
}



/* [[[ Properties ]]] */

.properties__group {
}

.properties__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;

  padding-top: 48px;
  border-top: 1px solid var(--border-default);
}

.properties__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  min-height: 140px;
}

.properties__logo {
  width: 50%;
  height: 48px;
  object-fit: contain;
}

.properties__logo.tall { height: 80px; }
.properties__logo.short { width: 70%; }

@media (max-width: 767px) {
  .properties__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}



/* [[[ News ]]] */

.news__roll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 36px;
}

.news__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.news__thumbnail {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.news__info {
  padding: 24px 24px 88px;
}

.news__button__wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  padding: 0 24px 24px;
}

.news__title {
  margin: 0;
  font-size: 18px;
}

.news__date {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-mute);
}

.post__title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post__date {
  margin-top: -8px;
  font-size: 18px;
  color: var(--text-mute);
}

.post__disclaimer {
  margin: 0 0 36px;
  padding: 12px 0;
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.post__back {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .news__roll {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .news__roll {
    grid-template-columns: 1fr;
  }

  .post__title { font-size: 28px; }
}



/* [[[ Cases ]]] */

.cases__roll {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 48px;
}

.cases__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}

.cases__thumbnail {
  width: 40%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--outer-shadow-1);
}

.cases__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px;
}

.cases__tags {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
}

.cases__tags__item {
  font-size: var(--body-text-sm);
  color: var(--text-mute);
}

.cases__title {
  margin: 0 0 32px;
  font-size: 36px;
}

.case__metric__list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}

.case__metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 24px 0;
  padding: 48px 36px;
  border-right: 1px solid var(--border-default);
}

.case__metric:last-child {
  border-right: none;
}

.case__metric__number {
  display: inline-block;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.case__metric__label {
  display: inline-block;
}




@media (max-width: 767px) {
  .cases__item { flex-direction: column; }

  .cases__thumbnail { width: 100%; }

  .cases__info { padding: 24px 0 0; }

  .case__metric__list { flex-direction: column; }

  .case__metric {
    margin: 0 24px;
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid var(--border-default);
  }

  .case__metric:last-child { border-bottom: none; }
}