/* About Page - Consistent card treatment with rest of site. */

.about-page {
  padding: 1rem 0;
}

/* Profile: photo + title */
.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.profile-photo {
  flex-shrink: 0;
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.profile-titles {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 0;
}

/* Two-column layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 32%);
  gap: 2.5rem;
  width: 100%;
}

.grid-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

/* Bio */
.bio-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.bio-text p {
  margin-bottom: 1.4rem;
}

.bio-text a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--tertiary);
}

/* Sidebar */
.grid-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

/* Currently Reading section - card styled like post-entry cards */
.reading-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reading-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reading-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-sizing: border-box;
}

.reading-link:active .reading-card {
  transform: scale(0.96);
}

.book-cover {
  flex-shrink: 0;
  width: 55px;
  height: 82px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.reading-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.reading-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  font-weight: 600;
}

.book-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.book-author {
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 0;
}

.reading-list-link {
  font-size: 0.75rem;
  opacity: 0.7;
  text-decoration: underline;
  color: var(--primary);
  padding-left: 0.25rem;
}

/* Quotes - styled like post-entry cards */
.sidebar-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.quotes-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-block {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--tertiary);
}

.quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 0.5rem 0;
}

.quote-author {
  font-size: 0.8rem;
  opacity: 0.65;
  font-weight: 600;
  text-align: right;
  margin: 0;
}

.quote-author::before {
  content: '— ';
}

/* Responsive */
@media (max-width: 768px) {
  .about-page {
    padding: 0.5rem 0;
  }

  .profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .profile-image {
    width: 160px;
    height: 160px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-left {
    gap: 1.5rem;
  }

  .bio-text {
    font-size: 1rem;
  }
}
