/* style.css */
.ct-b47b920d-wrapper {
    padding: 40px 20px;
    background: #fdfdfd;
    font-family: sans-serif;
    text-align: center;
}
.ct-b47b920d-header {
    margin-bottom: 40px;
}
.ct-b47b920d-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.ct-b47b920d-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Swiper Container */
.ct-b47b920d-slider {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

/* Card */
.ct-b47b920d-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ct-b47b920d-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Stars */
.ct-b47b920d-stars {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Content */
.ct-b47b920d-content {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0 0 20px;
    font-style: italic;
}

/* Author */
.ct-b47b920d-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.ct-b47b920d-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}
.ct-b47b920d-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
}
.ct-b47b920d-location {
    font-size: 13px;
    color: #888;
}

/* Controls */
.ct-b47b920d-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.ct-b47b920d-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
