/* Minimal, readable styling for an academic profile site.
   Customise freely. */

.home-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 700px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
}

.headshot {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
}

.small-note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.pub-item {
  margin-bottom: 1.1rem;
}

.pub-links a {
  margin-right: 0.75rem;
}

.keywords {
  opacity: 0.85;
  font-size: 0.95rem;
}
