.rep-message {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
}

.rep-profile {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.rep-photo {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rep-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  letter-spacing: 0.08em;
}

.rep-details {
  flex: 1 1 260px;
}

.rep-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.rep-role {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.rep-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rep-meta dt {
  font-weight: bold;
  color: #f44;
  margin-bottom: 0.2rem;
}

.rep-meta dd {
  margin: 0;
  color: #eee;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .rep-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .rep-photo {
    flex: 0 0 100%;
  }

  .rep-photo-placeholder {
    width: 160px;
    height: 160px;
  }
}

