/* Preferred partners / lenders strip (#2557) */
.pb-partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.pb-partner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(100%, 220px);
  flex: 1 1 200px;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  background: #fafafa;
}
.pb-partner-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.pb-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pb-partner-logo--empty,
.pb-partner-initial {
  font-size: 18px;
  font-weight: 800;
  color: #6a6a6a;
}
.pb-partner-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pb-partner-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}
.pb-partner-role {
  font-size: 12px;
  color: #6a6a6a;
  font-weight: 600;
}
.pb-partner-link {
  font-size: 12px;
  font-weight: 700;
  color: #ff385c;
  text-decoration: none;
  margin-top: 4px;
}
.pb-partner-link:hover {
  text-decoration: underline;
}
@media (max-width: 560px) {
  .pb-partners-row {
    flex-wrap: nowrap;
  }
  .pb-partner-card {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
