/* ViceBudget trust and evidence layer */

.vb-trust-strip {
  border-top: 1px solid var(--stone, #e8e0d0);
  border-bottom: 1px solid var(--stone, #e8e0d0);
  background: rgba(245, 240, 232, 0.64);
  padding: 1.1rem 2rem;
}

.vb-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.vb-trust-eyebrow {
  margin-bottom: 0.25rem;
  color: var(--bark, #8c7355);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-trust-title {
  color: var(--charcoal, #2a2420);
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
}

.vb-trust-note {
  color: var(--text-light, #6b5f52);
  font-size: 0.86rem;
  line-height: 1.55;
}

.vb-trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vb-trust-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid var(--stone, #e8e0d0);
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.82);
  color: var(--text, #3a3028);
  font-size: 0.76rem;
}

.vb-trust-link {
  white-space: nowrap;
  color: var(--accent, #b85c38);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.vb-source-ref {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--stone, #e8e0d0);
  border-left: 3px solid var(--accent, #b85c38);
  border-radius: 0 6px 6px 0;
  background: rgba(245, 240, 232, 0.7);
  color: var(--text-light, #6b5f52);
  font-size: 0.86rem;
  line-height: 1.6;
}

.vb-source-ref strong {
  color: var(--charcoal, #2a2420);
  font-weight: 500;
}

.vb-source-ref a {
  color: var(--accent, #b85c38);
}

@media (max-width: 780px) {
  .vb-trust-strip {
    padding: 1rem 1.25rem;
  }

  .vb-trust-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .vb-trust-link {
    width: fit-content;
  }
}

@media print {
  .vb-trust-strip {
    padding: 0.75rem 0 !important;
    background: #fff !important;
  }
}
