Text widget'ı ile span olarak "highlight" sınıfı verirsiniz.
<h1>
    Take a look at what <span class="highlight">our clients</span> say
  </h1>
Custom CSS alanına
.highlight {
  background-color: #ffc800; /* Yellow background matching the image */
  padding: 5px 10px; /* Spacing around text */
  color: #ffffff; /* White text color for contrast */
  font-weight: bold; /* Bold weight for emphasis */
  border-radius: 5px; /* Rounded corners */
  transform: rotate(-5deg); /* Slight tilt for effect */
  display: inline-block;
}
yazdığınızda "highlight" sınıfına sahip öge görüntüdeki gibi gözükür.