.feature-showcase {
  position: relative;
  z-index:1;
  padding-inline: 0;
}

.feature-showcase__body {
  position: relative;
}

.feature-showcase__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  list-style: none;
  margin-block: 0;
  padding-left: 0;
}

.feature-showcase__card {
  backdrop-filter: blur(2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  gap: 2.5rem;
  margin-block: 0;
  max-width: 25rem;
  min-height: 13rem;
  padding: 1.5rem;
  overflow: hidden;
  z-index: 0;
  transform: translateY(0);
  transition: all .6s var(--animation-slow);
}

.feature-showcase__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; 
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(255, 255, 255, 0.12) 100%
  );

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all .6s var(--animation-slow);
  pointer-events: none;
  z-index: 1;
}

.feature-showcase__card:focus,
.feature-showcase__card:hover {
  backdrop-filter: blur(4rem);
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-16px);
}

.feature-showcase__card::before:focus,
.feature-showcase__card::before:hover {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.40) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.24) 100%
  );
}

.feature-showcase__card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-showcase__card-heading {
  color: var(--white);
  font: 400 1rem / 1.5 'Plus Jakarta Sans', sans-serif;
}

.feature-showcase__card-icon {
  color: var(--white);
  display: block;
}

.feature-showcase__card-sub-heading {
  color: rgba(255, 255, 255, 0.64);
  font: 400 0.8125rem / 1.692 'Plus Jakarta Sans', sans-serif;
}

.feature-showcase__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  min-height: 20rem;
  padding-bottom: 3.75rem;
  padding-inline: 2.75rem;
  padding-top: 2.5rem;
  position: relative;
}

.feature-showcase__header {
  max-width: 51rem;
  text-align: center;
}

.feature-showcase__header .common-heading {
  align-items: center;
}

.feature-showcase__header :is(.common-heading__eyebrow, .common-heading__heading) {
  color: var(--white);
}

.feature-showcase__header .common-heading__eyebrow.-with-icon {
  backdrop-filter: blur(2rem);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
}

.feature-showcase__header .common-heading__sub-heading {
  color: rgb(255, 255, 255, 0.67);
}

.feature-showcase__notes {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 38rem;
  padding-top: 2rem;
  position: relative;
  text-align: center;
}

.feature-showcase__notes::before {
  border: solid 0.0625rem var(--feature-showcase__notes-line_color, var(--yellow));
  content: '';
  display: block;
  height: 2rem;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% -50%;
  width: 0;
}

.feature-showcase__notes :is(p, ul, ol) {
  color: inherit;
  margin-block: 0;
}

.feature-showcase__notes strong {
  color: var(--yellow);
}

.feature-showcase__surface {
/*   background: var(--blue); */
  background: radial-gradient(49.47% 79.51% at 32.17% 8.28%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(126.86deg, #0B45DA 16.68%, #3F0674 89.04%);
  border-radius: 2rem;
  inset: 0;
  overflow: clip;
  position: absolute;
}

.feature-showcase__surface-asset {
  display: block;
  height: 100% !important;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

@media screen and (min-width: 48rem) {
  .feature-showcase {
    padding-inline: 1rem;
  }
  
  .feature-showcase__card {
    max-width: calc(33.333% - 0.1667rem);
  }
  
  .feature-showcase__content {
    gap: 3rem;
    padding-bottom: 5.625rem;
    padding-inline: 4.125rem;
    padding-top: 3.75rem;
  }
  
  .feature-showcase__notes {
    padding-top: 3rem;
  }
  
  .feature-showcase__notes::before {
    height: 3rem;
  }
  
  .feature-showcase__surface {
    border-radius: 3rem;
  }
}
  
@media screen and (min-width: 62rem) {
  .feature-showcase__cards:not(.-odd) .feature-showcase__card {
    max-width: calc(25% - 0.1875rem);
  }
 
  .feature-showcase__content {
    gap: 4rem;
    padding-bottom: 7.5rem;
    padding-inline: 5.5rem;
    padding-top: 5rem;
  }
  
  .feature-showcase__notes {
    padding-top: 4rem;
  }
  
  .feature-showcase__notes::before {
    height: 4rem:
  }
  
  .feature-showcase__surface {
    border-radius: 4rem;
  }
}

@media screen and (min-width: 75rem) {
  .feature-showcase__card {
    flex-basis: 8.75rem;
    max-width: 25rem;
    min-width: 8.75rem;
  }
}
