.pub-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  font-family: var(--font-primary);
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pub-container.show {
  opacity: 1;
  transform: translateY(0);
}

.pub-container h1 {
  text-align: center;
  color: var(--villanova-blue);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.pub-list {
  counter-reset: pub-num;
  list-style: none;
  padding-left: 0;
}

.pub-list li {
  counter-increment: pub-num;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pub-list li::before {
  content: counter(pub-num) ".";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--villanova-blue);
}

.pub-list em {
  color: var(--villanova-blue);
  font-style: normal;
  font-weight: bold;
}

.pub-list span {
  font-weight: bold;
  color: #222;
}

.pub-list a {
  color: var(--villanova-blue);
  text-decoration: none;
  font-weight: bold;
}

.pub-list a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pub-container h1 {
    font-size: 2rem;
  }

  .pub-list li {
    font-size: 1rem;
  }
}