/*
  Shadow DOM notes (guide Section 6):
  - Colors below are hardcoded placeholders matching the approved design
    reference. Swap for this site's Webflow variables once you have their
    names from the Designer's Variables panel.
  - logoBackground is intentionally NOT hardcoded here — it comes through as
    an inline style from the logoBackground prop, since it's a per-partner
    manual override rather than a fixed site value.
*/

.fp-state {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #6b6478;
  padding: 24px 4px;
}
.fp-error {
  color: #b23a3a;
}

.fp-card {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(30, 12, 50, 0.14);
  padding: 36px;
  display: flex;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 67px;
}
@media (max-width: 640px) {
  .fp-card {
    flex-direction: column;
    padding: 24px;
  }
}

.fp-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 250px;
  flex-shrink: 0;
}
.fp-photo {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 39px;
  background-size: cover;
  background-position: center;
  background-color: #e5e0ea;
}
.fp-logo-box {
  border-radius: 39px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.fp-logo-img {
  max-width: 150px;
  min-width: 150px;
  object-fit: cover;
}
.fp-logo-missing {
  background: #f3eef6;
  border: 1px dashed #d9c9e2;
  color: #9b8fab;
  font-size: 11px;
  text-align: center;
  padding: 10px;
}

.fp-right {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.fp-tag {
  align-self: flex-start;
  background: #ec30da26;
  color: #ec30da;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.fp-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fp-name {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  color: #14111e;
  line-height: 1.2;
}
.fp-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #14111e;
}
.fp-desc {
  margin: 6px 0 4px;
  font-size: 1.2rem;
  line-height: 1.65;
  color: #8d8798;
  max-width: 44ch;
}
.fp-desc-empty {
  font-style: italic;
  opacity: 0.7;
}
.fp-actions {
  display: flex;
  gap: 33px;
  margin-top: 6px;
}
.fp-btn-outline {
  text-align: center;
  padding: 1rem 1.5rem .9rem;
  border-radius: 999px;
  border: 2px solid #14162b;
  color: #14162b;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  width: 100%;
}
.fp-btn-primary {
  text-align: center;
  padding: 1rem 1.5rem .9rem;
  border-radius: 999px;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  background: linear-gradient(90deg, #3457d5, #b02cc9);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  width: 100%;
}

