/* ===== Profile ===== */
.profile {
  background: var(--white);
}

.profile-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
}

@media (min-width: 768px) {
  .profile-card {
    grid-template-columns: 240px 1fr;
  }
}

.profile-photo {
  width: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 auto;
}

.profile-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.profile-photo-placeholder {
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.85rem;
}

.profile-photo-placeholder svg {
  display: block;
  margin: 0 auto 8px;
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-name-reading {
  font-size: 0.85rem;
  color: var(--text-lighter);
  margin-bottom: 24px;
}

.profile-bio {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text);
}

.profile-bio p + p {
  margin-top: 16px;
}

.profile-quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.8;
}

.profile-personal {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}
