/* Publication cards */
.pub-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2em;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s ease;
}

.pub-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pub-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.pub-card h3 {
  margin-top: 0;
  margin-bottom: 0.3em;
  font-size: 1.05em;
}

.pub-card .pub-authors {
  color: #555;
  font-size: 0.88em;
  margin-bottom: 0.6em;
}

.pub-card .pub-description {
  font-size: 0.92em;
  text-align: justify;
  margin-top: 0.8em;
}

.pub-card figure {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Profile links icons (Academicons) */
.ai {
  font-size: 1.1em;
}
