.fp__head {
  margin-bottom: 48px;
}

.fp__grid {
  display: grid;
  gap: 24px;
}

.fp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.fp-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.fp-card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  background-size: cover;
  background-position: center;
  background-color: #dde4df;
  overflow: hidden;
}

/* Filter overlay to unify image tones */
.fp-card__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 22, 0.28);
  mix-blend-mode: multiply;
}

.fp-card__img:hover .fp-card__img-overlay {
  background: rgba(20, 30, 22, 0.15);
}

.fp-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fp-card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.fp-card__body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  flex: 1;
}

.fp-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: #243d2e;
}

@media (min-width: 900px) {
  .fp__grid { grid-template-columns: repeat(3, 1fr); }
}
