.mr-related-posts {
    border: 1px solid #e6e6e6;
    padding: 15px;
    border-radius: 4px;
    box-sizing: border-box;
}
.mr-related-posts h3 {
    margin-top: 0;
    margin-bottom: 12px;
}
.mr-related-posts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mr-related-posts li.mr-item {
    display: flex;
    align-items: center;
    padding-bottom: 8px; /* Espaçamento mínimo */
    border-bottom: 1px dashed #eee;
}
.mr-related-posts li.mr-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important; /* Evitar margem extra no último item */
}
.mr-related-posts .mr-bullet {
    margin-right: 8px;
    line-height: 1;
}
.mr-related-posts .mr-thumb-wrap {
    flex-shrink: 0; /* Impede que a imagem encolha */
}
.mr-related-posts .mr-thumb {
    display: block;
    object-fit: cover; /* Garante que a imagem cubra a área sem distorcer */
    border-radius: 3px;
}
.mr-related-posts a {
    text-decoration: none;
    font-weight: inherit;
    font-style: inherit;
}
.mr-related-posts a:hover {
    text-decoration: underline;
}