.cbd-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.cbd-post-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}
.cbd-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.cbd-taxonomy {
    font-size: 12px;
    margin-top: 10px;
    color: #555;
}
.cbd-title {
    font-size: 18px;
    margin: 10px 0;
}
.cbd-meta {
    font-size: 13px;
    color: #999;
}
.cbd-excerpt {
    margin-top: 10px;
    font-size: 14px;
}
.cbd-pagination {
    margin-top: 20px;
    text-align: center;
}
.cbd-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}
.cbd-page-link {
    padding: 6px 14px;
    background: #f1f1f1;
    color: #111;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.cbd-page-link.active {
    background-color: #ff3b3f;
    color: white;
}
