.tp-badge-container-8f604119 {
    display: block;
    font-family: sans-serif;
    text-align: center;
    width: 100%;
}
.tp-badge-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px 15px;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
    margin-bottom: 40px; /* Default margin, controllable via slider */
}
a.tp-badge-link:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}
div.tp-badge-no-link {
    cursor: default;
}
.tp-badge-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Allows wrapping on very small screens */
    justify-content: center;
}
.tp-stars-container {
    display: flex;
    gap: 2px;
}
.tp-star {
    font-size: 20px;
    line-height: 1;
}
.tp-star.star-filled {
    color: #00b67a;
}
.tp-star.star-empty {
    color: #dcdce6;
}
.tp-badge-text {
    font-size: 14px;
    color: #191919;
}

.tp-reviews-wrapper {
    width: 100%;
    display: block;
}

.tp-reviews-flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.tp-review-item {
    background: #fcfcfc;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
    width: calc(50% - 10px);
    box-sizing: border-box;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .tp-review-item {
        width: 100%; /* Switch to 1 column on mobile */
    }
}

.tp-reviewer-name {
    font-size: 16px;
    margin-bottom: 5px;
    color: #191919;
}
.tp-review-text {
    font-size: 14px;
    color: #191919;
    line-height: 1.5;
}