/* ============================
   Credibility band, founder note,
   values + reassurance strip
   ============================ */

.cm-cred-wrap {
  border-radius: 1.4rem;
  background: var(--cm-surface-deep);
  color: #e5e7eb;
  padding: 2.1rem 1.7rem 1.6rem;
  box-shadow: var(--cm-shadow-cred);
}

@media (min-width: 992px) {
  .cm-cred-wrap {
    padding: 2.5rem 2.3rem 1.9rem;
  }
}

.cm-cred-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: #f9fafb;
}

.cm-cred-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .9rem;
}

.cm-cred-list li {
  display: flex;
  gap: .45rem;
  margin-bottom: .35rem;
}

/* Founder card */
.cm-founder-card {
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.8);
  padding: 1.2rem 1.1rem;
  font-size: .88rem;
}

.cm-founder-card strong {
  display: block;
  margin-top: .6rem;
  font-size: .86rem;
}

.cm-founder-card span {
  font-size: .8rem;
  color: #9ca3af;
}

/* Values list */
.cm-values-block {
  font-size: .86rem;
}

.cm-values-item + .cm-values-item {
  margin-top: .6rem;
}

.cm-values-label {
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: .1rem;
}

.cm-values-text {
  margin: 0;
  color: #9ca3af;
}

/* Center-align reassurance line at bottom of credibility band */
.cm-footer-reassure {
  border-top: 1px solid rgba(148,163,184,0.5);
  margin-top: 1.4rem;
  padding-top: .9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem 1.2rem;
  text-align: center;
  font-size: .78rem;
  color: #9ca3af;
}

.cm-footer-reassure span {
  display: inline-block;
}

/* separators only BETWEEN items */
.cm-footer-reassure span::before { content: ""; }
.cm-footer-reassure span + span::before { content: "• "; }

/* optional: remove bullets when wrapped on small screens */
@media (max-width: 600px) {
  .cm-footer-reassure span + span::before { content: ""; }
}

/* ===== FORCE-CENTER the reassurance line (wins over other rules) ===== */
.cm-cred-wrap .cm-footer-reassure{
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  text-align: center !important;
}

/* Ensure items behave nicely */
.cm-cred-wrap .cm-footer-reassure span{
  display: inline-flex;
  align-items: center;
}

/* Separator bullets ONLY between items (not before the first) */
.cm-cred-wrap .cm-footer-reassure span::before{ content: ""; }
.cm-cred-wrap .cm-footer-reassure span + span::before{
  content: "•";
  margin: 0 .55rem;
}

/* Optional: remove bullets on small screens when wrapping */
@media (max-width: 600px){
  .cm-cred-wrap .cm-footer-reassure span + span::before{ content: ""; margin: 0; }
}

/* Center the OLD credibility band's bottom meta line */
.cm-cred-shell .cm-cred-meta{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem 1.2rem;
  text-align: center;
}

.cm-cred-shell .cm-cred-meta span{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
