/* ========================================
   User Profile
   ======================================== */

.profile {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem var(--page-gutter, 1.5rem);
}

.profile__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.profile__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
}

.profile__subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.profile__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.profile__section {
  margin-bottom: 3rem;
}

.profile__list {
  border-top: 1px solid var(--border-subtle);
}

.profile__row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}

.profile__row:hover {
  border-left-color: var(--accent);
  padding-left: 0.75rem;
}

.profile__row-verb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.profile__row-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.profile__row-link:hover {
  text-decoration: none;
}

.profile__row-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  min-width: 7em;
  flex-shrink: 0;
}

.profile__row-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
}

.profile__row-location {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.profile__row-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
}

.profile__row-rating {
  flex-shrink: 0;
  margin-left: auto;
}

.profile__empty {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem 0;
}
