.most-readed-slider {
    padding: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 15%);
    border-radius: 10px;
    margin-bottom: 20px;
    background: #eaeaea;
}

.most-readed-slider__title {
    color: #000 !important;
    display:block;
    font-size:30px;
    line-height:36px;
    font-weight:700;
    width:100%;
    font-family: "Merriwheather" !important;
    margin-bottom: 15px;
}
.most-readed-slider__item {
    display:flex;
    align-items:center;
    gap:20px
}

.most-readed-slider__slider-wrapper .title ,.most-readed-slider__item__link {
    color: #000 !important;
    line-height: 1;
    font-size: 12px;
}

.author-link,
.info,
.post-date,
.separador {
    font-style:italic;
    color: #333333;
    font-family:"Source Sans Pro",sans-serif !important;
    font-size:12px;
    line-height:22.4px
}
.most-readed-slider__item .title {
    color:#000;
    font-size:16px;
    margin:3px 0 0
}

a.most-readed-slider__item__link.imagem {
    flex: 0 0 30%;
    width: 30%;
    min-height: 100%;
}

.most-readed-slider__item-imagem {
    object-fit: cover;
    height: 100%;
}

.read__item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.most-readed-slider__item .category {
    font-family:"Source Sans Pro" !important;
    letter-spacing:1px;
    color:#636363;
    font-size:11px;
    text-transform:uppercase;
    font-weight:700
}
.most-readed-slider__item .date {
    color:#959595;
    font-size:12px;
    font-weight:500
}


/********* Swiper ***********/

.most-readed-slider-title-nav {
	display: flex;
    gap: 5px;
}

/* Container Wrapper para posicionar as setas */
.most-readed-slider__slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Área de Scroll (A Track) */
.most-readed-slider__track {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory; /* O "imã" do scroll */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Suavidade no iOS */
    padding-bottom: 10px; /* Espaço para scrollbar não cobrir conteúdo se visível */
    width: 100%;
    
    /* Esconder Scrollbar visualmente mas manter funcionalidade */
    scrollbar-width: none; /* Firefox */
}
.most-readed-slider__track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Item Individual */
.most-readed-slider__item {
    min-height: fit-content;
    height: 100px;
    border: solid 1px #eee;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 13%);
    
    /* Garante que o item não encolha e tenha um tamanho fixo base */
    flex: 0 0 85%;
    max-width: 300px; /* Limite de largura no desktop */
    scroll-snap-align: start; /* Onde o item deve parar ao soltar o dedo */
    
    /* Manter estilos originais de flex interno */
    display: flex;
    align-items: stretch;
    gap: 10px;
}

/* Botões de Navegação */
.slider-nav {
    background: #636363 !important;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustes Responsivos */
@media (min-width: 768px) {
    .most-readed-slider__item {
        flex: 0 0 45%; /* Mostra 2 itens e meio no tablet */
    }
}
@media (min-width: 1024px) {
    .most-readed-slider__item {
        flex: 0 0 64%; /* Mostra 3 itens no desktop */
    }
    /* Opcional: Esconder botões se não houver overflow no desktop, 
       mas como pediu setas, mantemos visíveis */
}
