/* ============================================================
TPG – Hero Feature Card (exact look & feel block)
Fully self-contained. No dependency on other TPG CSS.
============================================================ */

.tpg-heroFeature{
  background: #6DBE7A; /* green base */
  border-radius: 28px;
  padding: 28px 30px 22px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ---------- Top pill ---------- */
.tpg-heroFeature__tag{
  display: inline-block;
  background: #F6B21A;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* ---------- Main heading ---------- */
.tpg-heroFeature__title{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

/* ---------- Description ---------- */
.tpg-heroFeature__desc{
  font-size: 1rem;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 22px;
  opacity: 0.95;
}

/* ---------- People avatars ---------- */
.tpg-heroFeature__people{
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
}

.tpg-heroFeature__avatar{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #6DBE7A;
  margin-left: -14px;
  background: #ffffff;
}

.tpg-heroFeature__avatar:first-child{
  margin-left: 0;
}

.tpg-heroFeature__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Bottom pill ---------- */
.tpg-heroFeature__footer{
  background: #F6B21A;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-block;
}
