.custom-post-wrapper {
    margin-top: 20px;
}

.custom-post-wrapper.cpt-grid {
    display: grid;
    gap: 20px;
}

.custom-post-wrapper.cpt-list .custom-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.custom-post-item {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.custom-post-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.post-thumb img {
    max-width: 100%;
    height: auto;
}

.post-title {
    font-size: 18px;
    margin: 10px 0;
}

.post-excerpt {
    font-size: 14px;
    color: #555;
}

.post-slug {
    font-size: 13px;
    color: #999;
}

.ecpg-pagination {
    margin-top: 30px;
    text-align: center;
}

.ecpg-pagination ul {
    display: inline-flex;
    gap: 8px;
    padding: 0;
    list-style: none;
}

.ecpg-pagination li a,
.ecpg-pagination li span {
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.ecpg-pagination .current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
