    /* Outer container */
.first-party-results-cards {
  width: 100%;
}

/* Row of up to 3 cards */
.first-party-results-cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* Individual card */
.fpr-card {
  flex: 1 1 300px;
  max-width: 398px;          /* roughly your Figma width */
  min-height: 520px;         /* roughly your Figma height */
  padding: 48px 24px;
  border-radius: 16px;
  background: linear-gradient(0deg, #E0DFD4, #E0DFD4),
              linear-gradient(115.65deg, rgba(31, 208, 160, 0.05) 9.73%, rgba(80, 80, 80, 0.05) 50.25%, rgba(76, 169, 233, 0.05) 90.77%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items:center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.05);
}

/* Logo */
.fpr-card-logo {
  margin-bottom: 32px;
  min-height: 52px;
}
.fpr-card-logo-img {
  max-width: 100%;
  height: auto;
}

/* Stat row */
.fpr-card-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.fpr-card-stat {
  flex: 1 1 0;
  border-radius: 24px;
  width: 157px;
  height: 110px;
  max-width: 100%;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  background: #F4F1E6;
}

.b-type-primary img {
    filter: unset;
}

body.dark-theme .b-type-primary img {
       filter: brightness(0) invert(1);
}

.fpr-card-cta {
  box-shadow:
    -8px 4px 32px rgba(0,0,0,0.05),
    -2px 4px 8px rgba(0,0,0,0.05);
}


/* You can color these to match red/green states */
.fpr-card-stat--without {
  border-color: #CE6262;
  background-color: rgba(206, 98, 98, 0.1)
}
.fpr-card-stat-value--without {
  color: #CE6262;
}

.fpr-card-stat--with {
  border-color: #19C798;
  background-color:rgba(25, 199, 152, 0.1);
}
.fpr-card-stat-value--with {
  color: #19C798;
}

.fpr-card-stat-label {
  font-size: 14px;
  letter-spacing: -0.04rem;
}
.fpr-card-stat-value {
  font-size: 2rem;
  font-weight: 700;
}

/* Meta row (icon + text) */
.fpr-card-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.fpr-card-meta-icon {
  width: 20px;
  height: 20px;
}
.fpr-card-meta-text {
  font-size: 14px;
  font-weight: 700;
}

/* Description */
.fpr-card-description {
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.fpr-card-description p {
    font-size: 16px;
    color: var(--neutral-500)
}

body.dark-theme .fpr-card {
    background: var(--background-color-secondary) !important;
}


/* Button row */
.fpr-card-button {
  margin-top: auto;
}

@media (max-width: 540px) {
    .fpr-card-stat {
        width: 130px;
    }
    .fpr-card-stat-value {
        font-size: 1.5rem;
    }
    .fpr-card-stats-row {
        gap: 10px;
    }

}