.com_mytestimonials hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.testimonials-pagination-outer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 24px 0;
}
.testimonials-pagination-wrap {
    text-align: center;
}
.testimonials-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin: 24px auto;
    font-size: 14px;
    background: #fff;
}
.testimonials-pagination a,
.testimonials-pagination span {
    display: block;
    padding: 4px 12px;
    border-right: 1px solid #ddd;
    text-decoration: none;
    color: #222;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}
.testimonials-pagination a:last-child,
.testimonials-pagination span:last-child {
    border-right: none;
}
.testimonials-pagination a {
    color: #1976d2;
    cursor: pointer;
}
.testimonials-pagination a:hover {
    background: #f5f5f5;
    text-decoration: none;
}
.testimonials-pagination .current {
    background: #f5f5f5;
    color: #222;
    font-weight: bold;
    cursor: default;
}
.testimonials-data {
    column-count: 2;
    column-gap: 0px;
}
.testimonials-data .mytestimonials .testimonial-card {
    display: block;
    break-inside: avoid;
    margin-bottom: 24px;
    width: 100%;
}

@media (max-width: 700px) {
    .testimonials-data {
        column-count: 1;
    }
}