/* publications.css */
.recent-publications {
    padding: 4rem 2rem;
    background-color: #ffffff;
    color: #111;
    max-width: 900px;
    margin: auto;
  }
  
  .recent-publications h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .publication {
    margin-bottom: 2rem;
  }
  
  .publication p {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .publication em {
    font-style: italic;
    color: #555;
  }
  
  .pub-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }
  
  .pub-links a {
    color: #007B5E;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .pub-links a i {
    font-size: 0.9rem;
  }

  .paper-title {
    font-size: 20px;  /* Larger than normal text */
    
  }
  
  .authors {
    font-size: 16px;  /* Smaller than the title */
    color: #555;      /* Optional: subtle gray to de-emphasize */
  }  

  .distinguished-artifact-tag {
    color: red;
    font-weight: bold;
    margin-right: 0.5rem;
  }