/* Scoped presentation for anonymized, captioned Business Manager examples. */
.proofs {
  margin: 56px 0;
  scroll-margin-top: 100px;
  color: var(--text, #f4f1fa);
}
.proofs--home { margin: 0; padding: 76px 0; }
.proofs .proof-title {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  font-family: var(--font-head, sans-serif);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  letter-spacing: -.6px;
}
.proofs .proof-intro,
.proofs .proof-note {
  margin: 0 0 22px;
  max-width: 850px;
  color: var(--muted, #c1bbce);
  font-size: 15px;
  line-height: 1.7;
}
.proofs .proof-intro { font-size: 17px; }
.proofs .proof-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0;
  align-items: start;
}
.proofs .proof-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proofs .proof-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.proofs .proof-grid--single { max-width: 780px; }
.proofs .proof-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-2, #38303f);
  border-radius: 14px;
  background: var(--bg-soft, #0d0918);
}
.proofs .proof-image-link {
  display: block;
  border: 0;
  color: var(--text, #f4f1fa);
  text-decoration: none;
}
.proofs .proof-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 12px;
  background: #17151e;
}
.proofs .proof-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 370px;
  object-fit: contain;
}
.proofs--home .proof-image-frame { height: 280px; }
.proofs--home .proof-image-frame img { max-height: 256px; }
.proofs .proof-card--limit .proof-image-frame { min-height: 154px; }
.proofs .proof-card--portfolio .proof-image-frame { height: 330px; }
.proofs .proof-card--portfolio .proof-image-frame img { max-height: 306px; }
.proofs .proof-open {
  display: block;
  padding: 10px 16px;
  border-top: 1px solid var(--line, #29232f);
  border-bottom: 1px solid var(--line, #29232f);
  font-size: 12px;
  line-height: 1.5;
  color: #e0bdff;
}
.proofs .proof-image-link:hover .proof-open { background: rgba(192, 97, 255, .1); }
.proofs .proof-image-link:focus-visible,
.proofs .proof-guide-link:focus-visible,
.proofs .proof-details summary:focus-visible {
  outline: 3px solid #ffb020;
  outline-offset: -3px;
}
.proofs figcaption { padding: 18px; }
.proofs .proof-caption-title {
  display: block;
  margin: 0 0 10px;
  font-family: var(--font-head, sans-serif);
  font-size: 17px;
  line-height: 1.35;
  color: var(--text, #f4f1fa);
}
.proofs figcaption p {
  margin: 0;
  color: var(--muted, #c1bbce);
  font-size: 13px;
  line-height: 1.65;
}
.proofs .proof-guide-link {
  display: inline-block;
  padding: 8px 0;
  color: #e0bdff;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.proofs .proof-group { margin-top: 34px; }
.proofs .proof-group-title {
  margin: 0 0 12px;
  font-family: var(--font-head, sans-serif);
  font-size: 22px;
  line-height: 1.35;
}
.proofs .proof-details {
  margin-top: 32px;
  border: 1px solid var(--line-2, #38303f);
  border-radius: 14px;
  padding: 0 20px;
}
.proofs .proof-details summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--text, #f4f1fa);
  font-weight: 600;
  line-height: 1.5;
}
.proofs .proof-details summary::marker { color: #e0bdff; }
@media (max-width: 760px) {
  .proofs--home { padding: 52px 0; }
  .proofs .proof-grid--two,
  .proofs .proof-grid--three { grid-template-columns: minmax(0, 1fr); }
  .proofs .proof-card--limit .proof-image-frame { min-height: 0; }
  .proofs--home .proof-image-frame { height: auto; min-height: 0; }
  .proofs--home .proof-image-frame img { max-height: 340px; }
  .proofs .proof-details { padding: 0 14px; }
}
