/* Contact-Constantinos "request a sample" callout — used on product pages.
   Sample-first CTA: visible to everyone, since ordering is gated behind R&D
   approval. */

.cp-contact-sample {
  display: flex;
  gap: var(--lg);
  align-items: flex-start;
  margin: var(--lg) 0;
  padding: var(--lg);
  background: var(--bg-2);
  border: 1px solid var(--border);

  .cs-photo {
    flex-shrink: 0;
    width: 120px;
  }

  .cs-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }

  .cs-body h2 {
    margin-top: 0;
    margin-bottom: var(--sm);
  }

  .cs-body p {
    margin-bottom: var(--md);
    line-height: 1.6;
  }

  .cs-person {
    font-size: var(--body);
    color: var(--text-2);
  }

  .cs-person strong {
    color: var(--text);
  }

  .cs-title {
    font-size: var(--small);
    color: var(--text-3);
  }

  .cs-person a {
    color: var(--accent);
  }

  @media (max-width: 600px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
