.cpl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}
#cpl-search-container input.cpl-search{
    border: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#cpl-search-container .btn.search-button{
    background-color: #e03d49;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    text-transform: uppercase;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
#cpl-search-container .btn.search-button:hover{
    opacity: 0.8;
}
#cpl-search-container{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    min-width: 320px;
}
.clear-icon {
    font-size: 18px;
    color: #333;
}
.clear-icon:hover {
    color: #ff0000;
}
#cpl-search-container .search-wrap{
    max-width: 420px;
    width: 100%;
    position: relative;
    display: flex;
}
#cpl-search-container .search-wrap i{
    position: absolute;
    right: 70px;
    top: 11px;
    color: #e03d49;
    cursor: pointer;
}
#cpl-loader {
    text-align: center;
    font-weight: bold;
    padding: 20px;
    font-size: 16px;
    color: #555;
}
body .cpl-post img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.cpl-post h3 {
    font-size: 1.1rem;
    margin: 10px 0;
}

body #content a.cpl-button {
    background-color: #e03d49;
    font-family: "Source Sans Pro", Sans-serif;
    font-size: 20px;
    box-shadow: var(--shadow_horizontal, 0) var(--shadow_vertical, 0) var(--shadow_blur, 0) var(--shadow_spread, 0) rgba(0, 0, 0, 0.5);
    --shadow_horizontal: 0px;
    --shadow_vertical: 0px;
    --shadow_blur: 5px;
    --shadow_spread: 0px;
    border-radius: 5px 5px 5px 5px;
    padding: 15px 30px 15px 30px;
    color: #fff;
    display: block;
    text-align: center;
    text-decoration: none;
}
body #content a.cpl-button:hover,
body #content a.cpl-button:active,
body #content a.cpl-button:focus{
    background-color: #043873;
}

body #content .cpl-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 30px 0 45px;
}
body #content .cpl-pagination a{
    text-decoration: none;
    padding: 5px 10px;
    background-color: #e03d49;
    color: #fff;
}
body #content .cpl-pagination a.active,
body #content .cpl-pagination a:hover{
    background-color: #043873;
    color: #fff;
}
.no-post-found{
    text-align: center;
    margin: 60px 0;
}
#cpl-post-grid{
    margin-bottom: 45px;
}
@media (max-width: 1024px) {
    .cpl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cpl-grid {
        grid-template-columns: 1fr;
    }
}

