
.clp-featured-image img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.clp-posts-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.clp-posts-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* .clp-post {
    flex: 0 0 auto;
    box-sizing: border-box;
    background-color: #fff;
} */


.clp-posts {
    display: flex;
    flex-wrap: wrap; /* allows wrapping to next row */
  }
  

  .clp-post {
    flex: 0 0 calc(100% / 3); 
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
}

/* .round-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 60px;
    border-radius: 50%; 
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
} */

.border-round-button{
    border: 1px solid black;
}