/* custom post loop template for 3-col*/
.custom-loop-3col {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-loop-3col .post-item {
    width: calc(33.333% - 14px);
    border: 1px solid #eee;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
}

.custom-loop-3col .thumb img {
    width: 100%;
    height: auto;
}

.custom-loop-3col .title {
    font-size: 18px;
    margin: 10px 0;
}

.custom-loop-3col .meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.custom-loop-3col .excerpt {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-loop-3col .post-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .custom-loop-3col .post-item {
        width: 100%;
    }
}

.custom-pagination {
    text-align: center;
    margin-top: 30px;
		margin-bottom: 30px;
}

.custom-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.custom-pagination .current {
    background: #333;
    color: #fff;
    border-color: #333;
}

.custom-pagination a:hover {
    background: #f5f5f5;
}