/* Theme & Animation */
h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
h2::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #ff4081 0%, #fff 100%);
  margin-left: 1em;
  border-radius: 1px;
  min-width: 40px;
}
.emoji {
  font-size: 2.2rem;
  margin-right: 0.2em;
}
.contact-link {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #0077cc;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.contact-link:hover {
  color: #ff4081;
  transform: translateY(-2px) scale(1.05);
}
.contact-icon {
  margin-right: 0.6em;
  display: flex;
  align-items: center;
}
.contact-text {
  font-family: 'Merriweather', 'Roboto', serif;
  font-size: 1.08em;
}
.pub-card {
  transition: box-shadow 0.3s, transform 0.3s;
}
.pub-card:hover {
  box-shadow: 0 8px 24px rgba(0,119,204,0.12);
  transform: translateY(-4px) scale(1.01);
}
.news-list li {
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-list li:hover {
  box-shadow: 0 4px 16px rgba(0,119,204,0.10);
  transform: translateX(5px);
}
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
} 