/* ============================================
   CREDENTIALS & PARTNERSHIPS STRIP
   ============================================ */
.credentials-partnerships-strip {
  border-top: 1px solid rgba(51, 65, 85, 0.1);
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
  min-height: 100px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
}

.credentials-partnerships-strip__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
  width: 100%;
  padding: 24px 0;
}

.credentials-partnerships-strip__label {
  margin: 0;
  padding-right: 7px;
  font-size: 22px;
  font-weight: 500;
  line-height: 27px;
  color: #6b7280;
}

.credentials-partnerships-strip__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.credentials-partnerships-strip__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

.credentials-partnerships-strip__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.credentials-partnerships-strip__icon--default {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.credentials-partnerships-strip__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #64748b;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .credentials-partnerships-strip__inner {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .credentials-partnerships-strip__label {
    font-size: 18px;
    line-height: 24px;
    width: 100%;
  }

  .credentials-partnerships-strip__text {
    white-space: normal;
  }
}
