.image-feature {
  padding: var(--pa-space-3xl) var(--pa-gutter);
}
.image-feature__panel {
  position: relative;
  max-width: var(--pa-container-max);
  margin-inline: auto;
  aspect-ratio: 16/9;
  border-radius: 10px 160px 10px 10px;
  background: var(--pa-color-navy);
  overflow: visible;
}
@media (min-width: 1024px) {
  .image-feature__panel {
    aspect-ratio: 1280/612;
  }
}
.image-feature__panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  width: 38%;
  max-width: 420px;
  aspect-ratio: 829/461;
  background: url("../../images/video-swoop.svg") no-repeat center/contain;
  pointer-events: none;
}
.image-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.image-feature__card {
  position: relative;
  z-index: 1;
  margin-top: var(--pa-space-lg);
  padding: var(--pa-space-2xl) var(--pa-space-lg);
  border-radius: var(--pa-radius-md);
  background: var(--pa-color-red);
  box-shadow: 0 4px 5px rgba(13, 43, 71, 0.2);
  color: var(--pa-color-white);
}
@media (min-width: 1024px) {
  .image-feature__card {
    position: absolute;
    right: var(--pa-space-xl);
    bottom: var(--pa-space-xl);
    width: 29.6875%;
    max-width: 23.75rem;
    margin-top: 0;
  }
}
.image-feature__name {
  margin-bottom: var(--pa-space-sm);
  font-family: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 1.5px;
  color: var(--pa-color-white);
  text-transform: uppercase;
}
.image-feature__quote {
  margin: 0;
  font-family: "Ancizar Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--pa-color-white);
}
