/* Biography section layout */
  /* Profile and Bio layout */
  .bio-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  
  .profile-container {
    flex: 0 0 200px;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* Interests and Education layout */
  .info-grid {
    display: flex;
    gap: 2rem;
  }
  
  .info-column {
    flex: 1;
  }
  
  
  /* Responsive layout */
  @media (max-width: 48em) {
    .bio-header,
    .info-grid {
      flex-direction: column;
    }
    
    .profile-container {
      margin: 0 auto 2rem;
    }
    
    .info-column {
      margin-bottom: 2rem;
    }
  }

.education-item .year,
.education-item .school {
  color: var(--blockquote-color);
}

.project-card {
  background: var(--card-bg);
  box-shadow: 0 2px 4px var(--card-shadow);
}

.tag {
  background: var(--tag-bg);
  color: var(--text-color);
  display: inline-block;
  margin: 0.25rem 0.5rem 0.25rem 0;
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  line-height: 1.5;
}