#representative {
  background-color: var(--color-white);
}

.rep-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* Photo side */
.rep-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.accent-block {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 12px;
  height: 200px;
  background: linear-gradient(180deg, var(--color-cyan), var(--color-blue));
  border-radius: 4px;
  opacity: 0.2;
  z-index: 0;
}

.rep-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-small);
}

.rep-photo-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.rep-name {
  margin-top: var(--space-4);
  text-align: center;
}

.rep-name-title {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}

.rep-name-text {
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--color-navy);
}

/* Message side */
.rep-message {
  padding-top: var(--space-4);
  position: relative;
}

.rep-quote-mark {
  position: absolute;
  top: -0.2em;
  left: -0.3em;
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-cyan);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: Georgia, serif;
}

.rep-message-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 2.1;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.rep-signature {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.rep-signature-role {
  font-size: var(--font-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.rep-signature-name {
  font-size: var(--font-h3);
  font-weight: 700;
  color: var(--color-navy);
}
