/* Subtle academic styling */

.profile-img {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .profile-img {
    margin: 0 auto;
  }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  font-size: 0.95em;
}

.contact-list li {
  margin-bottom: 0.25rem;
}

h1, h2, h3 {
  font-weight: 600;
}

h2 {
  margin-top: 2rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 0.3rem;
}

.pub-year {
  font-weight: 600;
  color: #555;
  margin-top: 1.5rem;
}

.pub-entry {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid #e8e8e8;
}

.pub-title {
  font-weight: 600;
}

.pub-venue {
  font-style: italic;
  color: #666;
}

.project-card {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  margin-top: 0;
}

.tag {
  display: inline-block;
  background: #f0f4f8;
  color: #1a5490;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-right: 4px;
}
