.ctb-tp-wrapper {
    position: relative;
    width: 100%;
    margin: 20px 0;
    font-family: sans-serif;
}

.ctb-tp-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.ctb-tp-logo-link {
    color: #111;
    text-decoration: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctb-tp-logo-link strong {
    font-weight: 800;
}

.ctb-tp-overall-rating {
    background: #00b67a;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.ctb-tp-nav button {
    background: #f1f1f1;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.2s;
}

.ctb-tp-nav button:hover {
    background: #ddd;
}

.ctb-tp-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ctb-tp-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.ctb-tp-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ctb-tp-slide {
    padding: 0 10px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.ctb-tp-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.ctb-tp-stars-wrapper {
    color: #00b67a;
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.ctb-tp-stars-wrapper svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.ctb-tp-content {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    flex-grow: 1;
    margin-bottom: 20px;
}

.ctb-tp-meta {
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
}

.ctb-tp-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
}

.ctb-tp-date {
    font-size: 0.85rem;
    color: #777;
    margin-top: 4px;
}