.cardContainer {
    background-color: transparent;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
    min-height: 140px;
  }
  
  .cardContainer:hover {
    background-color: #f8f9fa;
  }
  
  .iconContainer {
    flex-shrink: 0;
    margin-right: clamp(15px, 4vw, 30px);
    margin-top: 10px;
  }
  
  .documentIcon {
    object-fit: contain;
    width: clamp(60px, 12vw, 100px);
    height: clamp(75px, 15vw, 125px);
  }
  
  .textContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: center;
    align-self: center;
    margin-top: 15px;
    flex: 1;
    min-width: 0;
  }
  
  .title {
    color: #2C3087;
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  .author {
    color: #000000;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem) !important;
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
  }
  
  .author span {
    font-weight: normal !important;
  }
  
  .publishDate {
    color: #5e5e5e !important;
    font-size: clamp(0.8rem, 2.2vw, 1.2rem) !important;
    margin-top: -15px;
    margin-bottom: 0;
    word-wrap: break-word;
  }
  
  /* Mobile specific adjustments */
  @media (max-width: 640px) {
    .cardContainer {
      padding: 10px 12px;
      min-height: 120px;
    }
    
    .iconContainer {
      margin-right: 15px;
      margin-top: 8px;
    }
    
    .textContent {
      margin-top: 12px;
    }
    
    .publishDate {
      margin-top: -10px;
    }
  }
  
  /* Tablet adjustments */
  @media (min-width: 641px) and (max-width: 1024px) {
    .cardContainer {
      padding: 11px 14px;
      min-height: 130px;
    }
    
    .iconContainer {
      margin-right: 20px;
    }
  }