    .sidebar-news-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    /*border-bottom: 1px solid #eeeeee66;*/
    }

    .sidebar-news-item:last-child {
      border-bottom: none;
    }
    
     .sidebar-news-item a {
	     display: contents;
     }
    .sidebar-news-img {
      width: 120px;
      height: 100px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .sidebar-news-content {
      flex: 1;
      min-width: 0;
    }

    .sidebar-news-title {
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    line-height: 1.3;
    margin: 0 0 8px 0;
    }

    .sidebar-news-date {
    font-size: 11px;
    color: #a0a0a0;
    display: flex;
    gap: 6px;
    align-items: center;
    }

    .sidebar-clock-icon {
      width: 16px;
      height: 16px;
      color: #007eff;
      flex-shrink: 0;
    }

    /* --- RESPONSIVO: MANTÉM ESTRUTURA MESMO EM MOBILE --- */
    @media (max-width: 768px) {
      .sidebar-news-container {
        max-width: 100%;
      }
      .sidebar-news-item {
        gap: 10px;
        padding: 10px 0;
      }
      .sidebar-news-img {
        width: 100px;
        height: 75px;
      }
      .sidebar-news-title {
        font-size: 15px;
      }
      .sidebar-news-date {
        font-size: 11px;
      }
    }

    @media (max-width: 480px) {
      .sidebar-news-item {
        gap: 8px;
      }
      .sidebar-news-img {
        width: 80px;
        height: 60px;
      }
      .sidebar-news-title {
        font-size: 14px;
      }
      .sidebar-clock-icon {
        width: 14px;
        height: 14px;
      }
    }



    .most-accessed {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto 20px;
    padding: 0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.most-accessed::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary) 40px, #eee 20px);
}


.most-accessed-posts {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.most-post-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.most-post-item:last-child {
    border-bottom: none;
}

.most-post-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-right: 15px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* HOVER: número fica vermelho */
.most-post-number:hover {
    background-color: var(--color-primary);
    color: white;
}

.most-accessed-posts a {
	color: #111;
}

.most-post-content {
    flex: 1;
}

.most-post-content h3 {
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #212121;
}

.most-post-actions {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
}

.most-post-actions::before {
    content: '←';
    margin-right: 5px;
    font-size: 10px;
}

/* ESTILO ESPECIAL PARA O PRIMEIRO ITEM (COM IMAGEM) */
.most-post-item-first .most-post-content {
    display: flex;
    flex-direction: column;
}

.most-post-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

        .most-post-number-int {
        display: grid;
        grid-template-columns: 80% 20%;
        align-items: stretch;
        }


.number1 {
padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #eee;
    height: 50px;
}

.title-number h2 {
   font-size: 18px;
}