.container-pub {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #013c1c;
  margin-bottom: 2rem;
}

.curso-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}

.curso-item:hover {
  background-color: #f0f0f0;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
}

.curso-quantidade {
  color: #555;
}

.titulo-producao {
  font-weight: bold;
  color: #013c1c;
  font-size: 1rem;
}

.detalhes-producao {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
}