.ArticleCard {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 1rem;
  border-radius: var(--radius-card);
  background-color: var(--color-cream);
}

.ArticleCard-link {
  display: block;
  color: inherit;
}

.ArticleCard-link:hover {
  color: inherit;
}

.ArticleCard-media {
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 16/10;
}

.ArticleCard-picture,
.ArticleCard-media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ArticleCard-media img {
  transition: transform 0.5s ease;
}

.ArticleCard:hover .ArticleCard-media img {
  transform: scale(1.04);
}

.ArticleCard-body {
  padding: 1.25rem 0.5rem 0.5rem;
}

.ArticleCard-tag {
  margin-bottom: 0.875rem;
}

.ArticleCard-meta {
  gap: 0.625rem 1.25rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: var(--color-navy);
}

.ArticleCard-meta .DotList-item {
  gap: 0.625rem;
}

.ArticleCard-meta .DotList-dot {
  height: 0.8125rem;
  width: 0.8125rem;
  color: var(--color-orange);
}

.ArticleCard-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
}

.ArticleCard-author {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.625rem;
  margin-top: auto;
  padding: 1rem 0.5rem 0.5rem;
}

.ArticleCard-avatar {
  height: 2.25rem;
  width: 2.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: var(--radius-pill);
  background-color: var(--color-sky);
  -o-object-fit: cover;
     object-fit: cover;
}

.ArticleCard-authorMeta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--color-navy);
}

.CaseCard {
  transition: background-color 0.4s ease;
  overflow: hidden;
  border-radius: var(--radius-card);
  background-color: var(--color-cream);
  color: var(--color-navy);
}

.CaseCard:hover {
  background-color: var(--color-blue);
  color: var(--color-cream);
}

.CaseCard-link {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  color: inherit;
}

.CaseCard-link:hover {
  color: inherit;
}

.CaseCard-title {
  transition: color 0.4s ease;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.25rem + 0.939vw, 1.875rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
}

.CaseCard-subtitle {
  transition: color 0.4s ease;
  max-width: 18.75rem;
  margin: 0.5rem 0 0;
  opacity: 0.75;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: inherit;
}

.CaseCard-showcase {
  position: relative;
  height: 11.25rem;
  margin-top: auto;
}

.CaseCard-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 30%;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.4s ease;
  overflow: hidden;
  border-radius: 1rem;
  opacity: 0;
}

.CaseCard-picture,
.CaseCard-media img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.CaseCard:hover .CaseCard-media {
  transform: scale(1);
  opacity: 1;
}

.CaseCard-blob {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-4deg);
  transition: background-color 0.4s ease;
  height: 9.375rem;
  width: 10.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0 1.5rem;
  border-radius: 46% 54% 52% 48%/54% 46% 54% 46%;
  background-color: var(--color-navy);
  color: var(--color-cream);
  position: absolute;
}

.CaseCard:hover .CaseCard-blob {
  background-color: var(--color-orange);
}

.CaseCard-statValue {
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-cream);
}

.CaseCard-statLabel {
  margin-top: 0.375rem;
  opacity: 0.8;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: var(--color-cream);
}

.CaseCard-cta {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.Insights-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.5rem;
}
@media print, screen and (min-width: 48em) {
  .Insights-head {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: end;
        align-items: flex-end;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.Insights-title {
  max-width: 32.5rem;
  color: var(--color-blue);
}

.Insights-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 64em) {
  .Insights-nav {
    display: none;
  }
}

.Insights-arrow {
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  height: 2.75rem;
  width: 2.75rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0.5rem;
  border: 0;
  background-color: transparent;
  color: var(--color-accent);
}

.Insights-arrow:hover {
  color: var(--color-orange-deep);
}

.Insights-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.Insights-arrowIcon {
  height: 1.125rem;
  width: auto;
}

.Insights-arrowIcon--next {
  transform: rotate(180deg);
}

.Insights-grid {
  overflow-x: auto;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 0.5rem;
  padding-left: 1.25rem;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 64em) {
  .Insights-grid {
    overflow: visible;
    display: -ms-grid;
    display: grid;
    gap: 1.5rem;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

.Insights-cta {
  transition: border-color 0.3s ease;
  overflow: hidden;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 0.5625rem;
  padding: 0.375rem 0.375rem 0.375rem 1rem;
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  position: relative;
}
@media print, screen and (min-width: 48em) {
  .Insights-cta {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
}

.Insights-cta:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  background-color: var(--color-navy);
  position: absolute;
}

.Insights-cta:hover {
  border-color: var(--color-navy);
  color: var(--color-cream);
}

.Insights-cta:hover:before {
  transform: scaleX(1);
}

.Insights-ctaLabel {
  position: relative;
  z-index: var(--z-base);
}

.Insights-ctaIcon {
  position: relative;
  z-index: var(--z-base);
  height: 1.5625rem;
  width: 1.5625rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: var(--radius-pill);
  background-color: var(--color-ice);
}

.Insights-ctaStar {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  height: 0.8125rem;
  width: 0.8125rem;
  color: var(--color-navy);
}

.Insights-cta:hover .Insights-ctaStar {
  transform: rotate(22.5deg) scale(1.2);
}

.Insights-grid::-webkit-scrollbar {
  display: none;
}

.Insights-grid > .ArticleCard {
  -ms-flex: 0 0 17.5rem;
      flex: 0 0 17.5rem;
  scroll-snap-align: start;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.Cases-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.5rem;
}
@media print, screen and (min-width: 48em) {
  .Cases-head {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: end;
        align-items: flex-end;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.Cases-title {
  max-width: 35rem;
  color: var(--color-blue);
}

.Cases-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}

.Cases-nav {
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.Cases-nav--head {
  display: none;
}
@media screen and (min-width: 64em) {
  .Cases-nav--head {
    display: -ms-flexbox;
    display: flex;
  }
}

.Cases-nav--foot {
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 64em) {
  .Cases-nav--foot {
    display: none;
  }
}

.Cases-arrow {
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  height: 2.75rem;
  width: 2.75rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0.5rem;
  border: 0;
  background-color: transparent;
  color: var(--color-accent);
}
.Cases-arrow:hover {
  color: var(--color-orange-deep);
}
.Cases-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.Cases-arrowIcon {
  height: 1.125rem;
  width: auto;
}

.Cases-arrowIcon--next {
  transform: rotate(180deg);
}

.Cases-cta {
  transition: border-color 0.3s ease;
  overflow: hidden;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5625rem;
  padding: 0.375rem 0.375rem 0.375rem 1rem;
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  position: relative;
}

.Cases-cta:before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  background-color: var(--color-navy);
  position: absolute;
}

.Cases-cta:hover {
  border-color: var(--color-navy);
  color: var(--color-cream);
}

.Cases-cta:hover:before {
  transform: scaleX(1);
}

.Cases-ctaLabel {
  position: relative;
  z-index: var(--z-base);
}

.Cases-ctaIcon {
  position: relative;
  z-index: var(--z-base);
  transition: background-color 0.3s ease;
  height: 1.5625rem;
  width: 1.5625rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: var(--radius-pill);
  background-color: var(--color-ice);
}

.Cases-ctaStar {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  height: 0.8125rem;
  width: 0.8125rem;
  color: var(--color-navy);
}

.Cases-cta:hover .Cases-ctaStar {
  transform: rotate(22.5deg) scale(1.2);
}

.Cases-body {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 64em) {
  .Cases-body {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: stretch;
        align-items: stretch;
    margin-top: 2.5rem;
  }
}

.Cases-cardCol {
  -ms-flex-order: 1;
      order: 1;
}
@media screen and (min-width: 64em) {
  .Cases-cardCol {
    height: 26.75rem;
    -ms-flex: 0 0 25.875rem;
        flex: 0 0 25.875rem;
    -ms-flex-order: 0;
        order: 0;
  }
}

.Cases-card {
  transition: opacity 0.2s ease;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-card);
  background-color: var(--color-navy);
  color: var(--color-cream);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (min-width: 64em) {
  .Cases-card {
    height: 100%;
  }
}

.Cases-card.is-swapping {
  opacity: 0;
}

.Cases-cardTitle {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.5rem;
  color: var(--color-cream);
}

.Cases-cardSub {
  max-width: 20rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-cream);
}

.Cases-cardStats {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-sky);
}

.Cases-cardStat {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
}

.Cases-cardStat .u-num {
  font-size: 1.5rem;
}
@media screen and (min-width: 64em) {
  .Cases-cardStat .u-num {
    font-size: 3.125rem;
  }
}

.Cases-cardStatIcon {
  height: 1.125rem;
  width: 1.125rem;
  color: var(--color-sky);
}
@media screen and (min-width: 64em) {
  .Cases-cardStatIcon {
    height: 1.5rem;
    width: 1.5rem;
  }
}

.Cases-cardStatIcon--rot {
  transform: rotate(48deg);
}

.Cases-card .Button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 0.5rem;
}

.Cases-cardCta {
  position: relative;
}

.Cases-cardCtaStar {
  position: relative;
  z-index: var(--z-base);
  transition: opacity 0.2s ease;
  height: 1rem;
  width: 1rem;
}

.Cases-cardCtaArrow {
  top: 50%;
  right: 1.375rem;
  z-index: var(--z-base);
  transform: translateY(-50%) rotate(180deg);
  transition: opacity 0.2s ease;
  height: 0.625rem;
  width: auto;
  opacity: 0;
  position: absolute;
}

.Cases-cardCta:hover .Cases-cardCtaStar {
  opacity: 0;
}

.Cases-cardCta:hover .Cases-cardCtaArrow {
  opacity: 1;
}

.Cases-panels {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 64em) {
  .Cases-panels {
    height: 26.75rem;
    min-width: 0;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 0.75rem;
  }
}

.Cases-panel {
  min-width: 0;
  display: none;
}
@media screen and (min-width: 64em) {
  .Cases-panel {
    transition: flex-grow 0.5s ease;
    transition: flex-grow 0.5s ease, -ms-flex-positive 0.5s ease;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1 0px;
        flex: 1 1 0;
  }
}

.Cases-panel.is-active {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 64em) {
  .Cases-panel.is-active {
    -ms-flex-positive: 14;
        flex-grow: 14;
  }
}

.Cases-panelMedia {
  width: 100%;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-card);
  background-color: var(--color-navy);
  aspect-ratio: 16/10;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.Cases-panelMedia:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
@media screen and (min-width: 64em) {
  .Cases-panelMedia {
    height: 100%;
    min-width: 0;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    aspect-ratio: auto;
  }
}

.Cases-panelImg {
  transition: transform 0.5s ease;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.Cases-panelMedia:hover .Cases-panelImg {
  transform: scale(1.03);
}

.Cases-panelLabel {
  display: none;
}
@media screen and (min-width: 64em) {
  .Cases-panelLabel {
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    transition: opacity 0.3s ease;
    max-height: calc(100% - 3rem);
    overflow: hidden;
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(4, 10, 67, 0.85), 0 10px 28px rgba(4, 10, 67, 0.55);
    white-space: nowrap;
    color: var(--color-cream);
    position: absolute;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
  }
}

.Cases-panelMedia .CornerMarks-mark {
  display: none;
}

.Cases-panel.is-active .Cases-panelMedia .CornerMarks-mark {
  display: block;
}

@media screen and (min-width: 64em) {
  .Cases-panel.is-active .Cases-panelLabel {
    opacity: 0;
  }
}