/* =========================
   SLP PROOF (CARD AVATARES)
========================= */

.slp-proof{
  display: inline-flex;
  align-items: center;
  gap: 35px;

  padding: 15px 30px;
  background: #fff;
  border: 1px solid #eae2cd;
  border-radius: 18px;
  box-shadow: 0 6px 14px rgba(29,24,12,.06);

  max-width: 450px;
}

.slp-proof__avatars{
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.slp-proof__avatar{
  width: 50px !important;
  height: 50px !important;
  border-radius: 9999px;
  margin-bottom: 0px !important;
  border: 2px solid #fff;
  object-fit: cover;
  display: block;
}

/* Solape */
.slp-proof__avatar + .slp-proof__avatar{ margin-left: -10px; }

.slp-proof__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #1d180c;
  padding-bottom: 5px !important;
}

.slp-proof__subtitle{
  margin: 2px 0 0 0;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(29,24,12,.60);
}

.slp-proof__text p{ margin: 0; }

/* Responsive */
@media (max-width: 640px){
  .slp-proof{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;

    padding: 14px 16px;
    max-width: 100%;
    width: 100%;
  }

  .slp-proof__avatars{
    justify-content: center;
    padding-left: 0;
  }

  .slp-proof__avatar{
    width: 42px !important;
    height: 42px !important;
  }

  .slp-proof__avatar + .slp-proof__avatar{ margin-left: -8px; }

  .slp-proof__title{
    font-size: 16px;
    padding-bottom: 2px !important;
  }

  .slp-proof__subtitle{
    font-size: 13px;
    line-height: 1.25;
  }
}