<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.profile-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-card:nth-child(odd) {
  background-color: #ffffff;
}

.profile-card:nth-child(even) {
  background-color: #f0f0f0;
}

.profile-card img {
  width: 160px;
  height: 157px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: none;
}

.profile-info h4 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #000;
}

.profile-info p {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #333;
}
</pre></body></html>