@import url("https://use.typekit.net/tvg4pki.css");
:root {
  --heading-font-family: Times New Roman, Times, serif;
  --body-font-family: neue-haas-grotesk-display, Garamond, Verdana, Arial, sans-serif;
}

@keyframes arrowLinkHover {
  0% {
    margin-left: 10px;
  }
  50% {
    margin-left: 15px;
  }
  100% {
    margin-left: 10px;
  }
}
.people-feed__card {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  transition: all 0.25s ease-in-out;
  background-color: #0091C8;
}
.people-feed__card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(153deg, #007FAD 0%, #007FAD 50%, #221B74 100%);
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 1900px) {
  .people-feed__card {
    height: 700px;
  }
}
@media (min-width: 1440px) and (max-width: 1899.98px) {
  .people-feed__card {
    height: 600px;
  }
}
@media (min-width: 1440px) {
  .people-feed__card {
    min-width: 397px;
  }
}
.people-feed__card figure {
  overflow: hidden;
  height: 100%;
  position: absolute;
  width: 100%;
}
.people-feed__card figure iframe,
.people-feed__card figure video,
.people-feed__card figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}
.people-feed__card figure img {
  scale: 1;
  transition: all 0.25s ease-in-out;
}
.is-tabbing .people-feed__card:focus:before {
  opacity: 0;
}
.is-tabbing .people-feed__card:focus figure img {
  scale: 1.1;
}
@media (hover: hover) {
  .people-feed__card:hover:before {
    opacity: 0;
  }
  .people-feed__card:hover figure img {
    scale: 1.1;
  }
}
.people-feed__card__details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 38px 47px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
.people-feed__card--no-image .people-feed__card__details {
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .people-feed__card__details {
    padding: 20px;
  }
}
.people-feed__card__name {
  color: #fff !important;
  font-family: "neue-haas-grotesk-display", Garamond, Verdana, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.people-feed__card__name {
  font-size: 22px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .people-feed__card__name {
    font-size: calc(22px + 4 * (100vw - 390px) / (1050));
  }
}
@media (min-width: 1440px) and (max-width: 1440px) {
  .people-feed__card__name {
    font-size: calc(26px + (100vw - 1440px) * 26 / 1440);
  }
}
@media (min-width: 1440px) {
  .people-feed__card__name {
    font-size: calc(26px + (1440px - 1440px) * 26 / 1440);
  }
}
.people-feed__card__name {
  line-height: 26px;
}
@media (min-width: 390px) and (max-width: 1440px) {
  .people-feed__card__name {
    line-height: calc(26px + 6 * (100vw - 390px) / (1050));
  }
}
@media (min-width: 1440px) and (max-width: 1440px) {
  .people-feed__card__name {
    line-height: calc(32px + (100vw - 1440px) * 32 / 1440);
  }
}
@media (min-width: 1440px) {
  .people-feed__card__name {
    line-height: calc(32px + (1440px - 1440px) * 32 / 1440);
  }
}
.people-feed__card__summary {
  color: #fff !important;
  font-family: "neue-haas-grotesk-display", Garamond, Verdana, Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  margin-top: 5px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .people-feed__card__summary p {
    font-size: 14px;
    line-height: 18px;
  }
}
.people-feed__card--no-image:after {
  content: "";
  background: url("/themes/custom/icahn_default/images/user-light-full.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 33.333%;
  left: 50%;
  translate: -50% -33.333%;
  width: 50%;
  height: 50%;
  transition: all 0.25s ease-in-out;
}