.love-match-new-feature-card {
  position: relative;
  isolation: isolate;
  border-color: rgba(123, 44, 191, 0.38);
  box-shadow: 0 5px 16px rgba(123, 44, 191, 0.14), 0 0 18px rgba(72, 170, 115, 0.16);
  animation: love-match-new-feature-card-pulse 4.5s ease-in-out 1;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.love-match-new-feature-card::after {
  position: absolute;
  z-index: -1;
  inset: -3px;
  border-radius: 14px;
  content: '';
  pointer-events: none;
  opacity: 0.7;
  box-shadow: 0 0 14px 2px rgba(72, 170, 115, 0.15);
  animation: love-match-new-feature-glow 4.5s ease-in-out 1;
}

.love-match-new-feature-card:hover,
.love-match-new-feature-card:focus {
  border-color: rgba(123, 44, 191, 0.48);
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.18), 0 0 22px rgba(72, 170, 115, 0.22);
}

.love-match-new-feature-card:focus {
  outline: none;
}

.love-match-card-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0;
}

.love-match-card-heading .home-v2-direct-service-title {
  max-width: 100%;
}

.love-match-new-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  max-width: 100%;
  padding: 2px 7px;
  border: 1px solid rgba(72, 170, 115, 0.28);
  border-radius: 999px;
  color: #347451;
  background: rgba(235, 249, 240, 0.96);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

@keyframes love-match-new-feature-glow {
  0%, 11.11%, 33.33%, 55.56%, 77.78%, 100% {
    opacity: 0.7;
    box-shadow: 0 0 14px 2px rgba(72, 170, 115, 0.15);
  }
  22.22%, 66.67% {
    opacity: 0.86;
    box-shadow: 0 0 18px 3px rgba(72, 170, 115, 0.28);
  }
  44.44% {
    opacity: 0.92;
    box-shadow: 0 0 19px 3px rgba(72, 170, 115, 0.32);
  }
}

@keyframes love-match-new-feature-card-pulse {
  0%, 11.11%, 33.33%, 55.56%, 77.78%, 100% {
    box-shadow: 0 5px 16px rgba(123, 44, 191, 0.14), 0 0 18px rgba(72, 170, 115, 0.16);
  }
  22.22%, 66.67% {
    box-shadow: 0 5px 17px rgba(123, 44, 191, 0.15), 0 0 21px rgba(72, 170, 115, 0.28);
  }
  44.44% {
    box-shadow: 0 5px 17px rgba(123, 44, 191, 0.15), 0 0 22px rgba(72, 170, 115, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .love-match-new-feature-card {
    animation: none;
  }
  .love-match-new-feature-card::after {
    animation: none;
  }
}
