.pub-year-group {
  margin-bottom: 48px;
}
.pub-year-label {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  color: rgba(30, 184, 160, 0.2);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pub-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pub-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
}
.pub-item:last-child {
  /* border-bottom: none; */
}
.pub-num {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
  min-width: 28px;
}
.pub-content {
}
.pub-title {
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
.pub-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.pub-title a:hover {
  color: var(--teal);
}
.pub-authors {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 5px;
  line-height: 1.6;
}
.pub-authors strong {
  color: var(--text-dark);
  font-weight: 400;
}
.pub-journal {
  font-size: 16px;
  color: var(--text-light);
  font-style: normal;
  font-weight: 300;
}
.pub-journal a {
  color: var(--teal);
  text-decoration: none;
  font-style: italic;
  font-weight: 400;
}
.pub-journal a:hover {
  text-decoration: underline;
}
.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 400;
  padding: 2px 9px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  background: #fef3e2;
  color: #92600a;
  border: 1px solid rgba(239, 159, 39, 0.25);
  font-style: normal;
}

@media (max-width: 480px) {
  .pub-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .pub-num {
    display: none;
  }
}
