/* publication-page.css
   Lightweight enhancements for the publications page (no content changes).
*/

.core-section{
  margin-bottom: 22px;
}

.core-section ol{
  padding-left: 1.4rem !important;
}

.core-section li{
  margin: 14px 0;
}

p.single-paper-f{
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

p.single-paper-f:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

p.single-paper-f a{
  text-decoration: none;
}

p.single-paper-f a:hover{
  text-decoration: underline;
}

@media (max-width: 760px){
  p.single-paper-f{ padding: 12px 12px; }
}
