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

a {
  text-decoration: none;
  font-weight: 500;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.7;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Honors page heading */
h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

/* Back link (honors) */
.back {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.back:hover {
  color: #1a1a1a;
}

/* Header (index) */
.header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.header img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.header-text h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.header-text .subtitle {
  font-size: 15px;
  color: #555;
}

.header-text .subtitle a {
  color: #555;
  text-decoration: none;
}

.header-text .subtitle a:hover {
  color: #1a1a1a;
}

/* Bio */
.bio {
  font-size: 16px;
  color: #333;
  margin-bottom: 48px;
}

.bio a {
  color: #333;
  text-decoration: none;
}

.bio a:hover {
  color: #1a1a1a;
}

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

.section h2 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}

/* Entries */
.entry {
  margin-bottom: 16px;
}

.entry .title {
  font-size: 15px;
  font-weight: 550;
}

.entry .title a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 550;
}

.entry .title a:hover {
  color: #555;
}

.entry .meta {
  font-size: 14px;
  color: #666;
}

.entry .meta a {
  color: #666;
  text-decoration: none;
}

.entry .meta a:hover {
  color: #1a1a1a;
}

/* Publications */
.publication {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.publication .pub-title {
  font-style: italic;
}

.publication .paywall {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  color: #b5b5b5;
  vertical-align: baseline;
  stroke: currentColor;
  fill: none;
  cursor: help;
}

.publication .pub-source {
  color: #666;
}

.publication .pub-source a {
  color: #666;
}

.publication .pub-source a:hover {
  color: #1a1a1a;
}

.publication .pub-download {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 1px 6px;
  vertical-align: middle;
}

.publication .pub-download:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* Video / external links */
.pub-links {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pub-video {
  display: inline-block;
  font-size: 13px;
  color: #666;
  background: transparent;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 3px 10px;
}

.pub-video:hover {
  background: #f0f0f0;
  color: #1a1a1a;
}

/* Downloads */
.download-link {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Gallery (honors) */
.gallery {
  margin-bottom: 48px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(100%);
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 520px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .container {
    padding: 40px 20px 60px;
  }
  h1 {
    font-size: 24px;
  }
  .header-text h1 {
    font-size: 24px;
  }
  .gallery img {
    height: 150px;
  }
}
