/* Minimal academic website — style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 30px;
}

a {
  color: #1a0dab;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  margin-bottom: 28px;
  font-size: 15px;
}

nav a {
  margin-right: 18px;
  color: #1a0dab;
}

nav a.active {
  font-weight: 700;
}

/* Header / bio section */
.header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.photo {
  flex-shrink: 0;
}

.photo img {
  width: 200px;
  border-radius: 4px;
}

.bio h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bio .subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

.bio p {
  margin-bottom: 10px;
}

.bio .links {
  margin-top: 8px;
}

.bio .links a {
  margin-right: 14px;
}

/* Sections */
section {
  margin-bottom: 30px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
  margin-bottom: 14px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 18px;
}

/* Publication list */
.pub-list {
  list-style: none;
  padding: 0;
}

.pub-list li {
  margin-bottom: 12px;
}

/* News list */
.news-list {
  list-style: none;
  padding: 0;
}

.news-list li {
  margin-bottom: 8px;
}

.news-list .date {
  font-weight: 700;
  display: inline;
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid #ccc;
  font-size: 13px;
  color: #888;
}

/* Responsive: stack on narrow screens */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .photo img {
    width: 160px;
  }

  .bio .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .bio .links a {
    margin-right: 0;
  }
}
