/* Allgemeines Layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Überschrift optional */
.container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2b6a9b;
}

/* Publikationsliste */
.lead ol {
  list-style: none;
  counter-reset: pub-counter;
  padding: 0;
  margin: 0;
}

/* Einzelne Publikation */
.lead ol li {
  counter-increment: pub-counter;
  background: #fafafa;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #2b6a9b;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}



/* Hover-Effekt */
.lead ol li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Zeitschrift und Titel */
.lead em {
  color: #2b6a9b;
  font-style: normal;
  font-weight: 500;
}

/* Dein Name besonders hervorheben */
.lead strong {
  color: #1b4f72;
  font-weight: bold;
}

/* Links schöner */
.lead a {
  color: #2b6a9b;
  text-decoration: none;
  border-bottom: 1px dashed rgba(43,106,155,0.4);
  transition: color 0.2s, border-bottom 0.2s;
}
.lead a:hover {
  color: #0f3e66;
  border-bottom: 1px solid #0f3e66;
}


.pub-year {
  position: relative;
  font-size: 1.4rem;
  color: #2b6a9b;
  margin: 2.5rem 0 1rem 0;
  text-align: center;
  font-weight: 600;
}

.pub-year::before,
.pub-year::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}

.pub-year::before {
  left: 0;
}

.pub-year::after {
  right: 0;
}



/* Mobile Ansicht */
@media (max-width: 600px) {
  .lead ol li {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  .container {
    padding: 1.5rem 0.8rem;
  }
}
