.trending-slider {
  height: 40px;
  display: flex;
    align-items: center;
    background-color: #fff;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    }

    .trending-label {
     background-color: var(--color-primary);
    color: white;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    flex-shrink: 0;
    }

    .interd {
      display: flex;
      width: 100%;
      border: 1px solid #eee;
    }

    .trending-label .bell-icon {
      font-size: 16px;
    }

    .news-content {
      padding: 7px 15px;
      height: 36px;
      flex-grow: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      color: #333;
      min-width: 0;
      transition: opacity 0.4s ease-in-out; /* Suaviza a troca */
    }

    .news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 450px;
    }

    .news-date {
      color: #777;
      font-size: 12px;
      flex-shrink: 0;
    }

    .nav-buttons {
      display: flex;
      border-left: 1px solid #e0e0e0;
    }

    .nav-button {
     padding: 0 15px;
    cursor: pointer;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    }

    .nav-button:hover {
      background-color: #f5f5f5;
    }

    .nav-button.prev::before {
      content: "‹";
    }

    .nav-button.next::before {
      content: "›";
    }
    .prev {border-right: 1px solid #d7d7d7;}
    
    
    @media (max-width:768px){
        .tn {display:none;}
        .news-title {max-width: 300px;}
 
    }
    
     @media (max-width:468px){
        .news-date {display:none;}
        .news-title {max-width: 200px;}
    }
    
    
    
    
    
    