.cew-random-posts{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
    gap:20px;
	    text-align: center;
}

.cew-post{
    padding:15px;
    border:1px solid #eee;
    border-radius:6px;
    transition:all .2s ease;
}

.cew-post:hover{
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.cew-title{
    font-size:18px;
    margin:0;
}

.cew-link{
    text-decoration:none;
    color:inherit;
}
.cew-hidden-post{
    display:none;
}

.cew-show-more{
    margin-top:20px;
    padding:10px 20px;
    border:none;
    background:#000;
    color:#fff;
    cursor:pointer;
}
.custom-toc{
  border:1px solid #e5e5e5;
  padding:20px;
  border-radius:8px;
  background:#fafafa;
}

.custom-toc .toc-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}

.custom-toc ul{
  list-style:none;
  padding-left:0;
}

.custom-toc li{
  margin:6px 0;
}

.custom-toc a{
  text-decoration:none;
  color:#333;
}

.custom-toc a:hover{
  text-decoration:underline;
}

.toc-h3{ padding-left:15px; }
.toc-h4{ padding-left:30px; }