.panel--featured-panel {
  --featured-navy: #002467;
  --featured-orange: #F68B1F;
  --featured-eyebrow-background: #8CC8E8;
  position: relative;
  display: grid;
  min-height: clamp(46rem, 48vw, 56rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--featured-navy);
  color: #FFF;

  .featured-panel__eyebrow {
    position: absolute;
    z-index: 3;
    top: 40px;
    left: 0;
    width: clamp(15rem, 20vw, 17.25rem);
    padding: 1rem clamp(1.5rem, 3vw, 2.25rem);
    background: var(--featured-eyebrow-background);
    color: var(--featured-navy);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .featured-panel__inner {
    z-index: 2;
    display: flex;
    align-items: center;
    gap: clamp(3rem, 6vw, 7rem);
    min-height: inherit;
    padding-block: clamp(10rem, 13vw, 13rem) clamp(4rem, 8vw, 7rem);
  }

  .featured-panel__content {
    flex: 0 1 35%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .featured-panel__body {
    font-size: clamp(1.2rem, 1.7vw, 1.8rem);
    font-weight: 300;
    font-family: var(--research-font-aleo);

    > :first-child {
      margin-top: 0;
    }

    > :last-child {
      margin-bottom: 0;
    }

    h2,
    h3 {
      margin: 0 0 1.25rem;
      color: inherit;
      font-family: var(--research-font-sans);
      font-size: inherit;
      font-weight: 400;
      line-height: inherit;
    }

    strong {
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    a {
      color: inherit;
    }

    > p:last-child > a {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      margin-top: clamp(1.5rem, 4vw, 3rem);
      font-size: 1rem;
      letter-spacing: 0.035em;
      line-height: 1.25;
      text-decoration: none;
      text-transform: uppercase;

      &::before {
        display: grid;
        width: 3.125rem;
        aspect-ratio: 1;
        border: 1px solid currentColor;
        border-radius: 50%;
        content: "\2193";
        font-size: 1.75rem;
        font-weight: 300;
        place-items: center;
        transition: background-color 180ms ease, color 180ms ease;
      }

      &:hover::before {
        background: #FFF;
        color: var(--featured-navy);
      }
    }
  }

  .featured-panel__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;

    .featured-panel__cta-icon {
      display: inline-flex;
      flex: 0 0 auto;

      svg {
        display: block;
        width: 100%;
        height: 100%;
      }
    }

    .featured-panel__cta-label {
      font-size: 17px;
      text-transform: uppercase;
      text-decoration: none;
    }

    &:hover .featured-panel__cta-label {
      text-decoration: underline;
    }

    &.cta_orange svg, &.cta_orange .featured-panel__cta-label {
      color: #F08B1E;
    }

    &.cta_white svg, &.cta_white .featured-panel__cta-label {
      color: #FFF;
    }

    &.cta_blue svg, &.cta_blue .featured-panel__cta-label {
      color: #002467;
    }
  }

  .featured-panel__features {
    flex: 0 1 40%;
    position: relative;
    z-index: 3;
    width: min(100%, 31.25rem);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    justify-self: end;
    background: var(--featured-orange);
  }

  .featured-panel__feature-list {
    display: grid;
    gap: clamp(1.75rem, 3vw, 3rem);
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .featured-panel__feature {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  .featured-panel__feature-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
  }

  .featured-panel__feature-text {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.55;
  }

  .featured-panel__image-wrap {
    position: absolute;
    z-index: 1;
    inset-block: 0;
    right: 0;
    width: 36%;
  }

  .featured-panel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 64rem) {
  .panel--featured-panel {
    min-height: 0;

    .featured-panel__inner {
      grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
      gap: 2rem;
      padding-top: 10rem;
    }

    .featured-panel__features {
      padding: 2rem;
    }

    .featured-panel__image-wrap {
      width: 38%;
    }
  }
}

@media (max-width: 48rem) {
  .panel--featured-panel {
    display: flex;
    flex-direction: column;

    .featured-panel__eyebrow {
      top: 2rem;
      width: min(80%, 17.25rem);
    }

    .featured-panel__inner {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 3rem;
      width: min(100% - (2 * var(--research-gutter)), 40rem);
      padding-block: 8rem 3rem;
    }

    .featured-panel__content,
    .featured-panel__features {
      width: 100%;
    }

    .featured-panel__features {
      padding: clamp(1.5rem, 7vw, 2.5rem);
    }

    .featured-panel__feature {
      grid-template-columns: 2.5rem minmax(0, 1fr);
      gap: 1rem;
    }

    .featured-panel__feature-icon {
      width: 2.5rem;
      height: 2.5rem;
    }

    .featured-panel__image-wrap {
      position: relative;
      inset: auto;
      width: 100%;
      min-height: 24rem;
    }

    .featured-panel__image {
      position: absolute;
      inset: 0;
    }
  }
}
