/* =========================
   Publications banner background
========================= */

.publications-banner{
  background-image: url("images/publications-banner.jpg");
}

/* =========================
   Publications List
========================= */

  .pub-year-group{
    margin-top: 40px;
  }

  .pub-year{
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    margin-bottom: 20px;
  }

  .pub-list{
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .pub-item{
    padding: 20px 24px;
    margin-bottom: 14px;
    background: var(--card);
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(17,24,39,0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .pub-item:hover{
    box-shadow: 0 8px 24px rgba(17,24,39,0.10);
    transform: translateY(-2px);
  }

  .pub-title{
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    margin: 0 0 6px 0;
    line-height: 1.4;
  }

  .pub-authors{
    font-size: 15px;
    color: var(--muted);
    margin: 0 0 4px 0;
  }

  .pub-venue{
    font-size: 14px;
    font-style: italic;
    color: #6b7280;
    margin: 0 0 10px 0;
  }

  .pub-links{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pub-link{
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .pub-link:hover{
    background: var(--accent);
    color: #ffffff;
  }

  @media (max-width: 600px){
    .pub-item{
      padding: 16px 18px;
    }
  }
