/* Gengold Testimonials CSS */
.gengold-testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gengold-testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gengold-testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: none;
    text-align: center;
}

.gengold-testimonial-slide.active {
    display: block;
}

.gengold-testimonial-content {
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.gengold-testimonial-author {
    font-weight: bold;
    color: #555;
    font-size: 1em;
}

/* Dots navigation */
.gengold-testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.gengold-testimonial-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gengold-testimonial-dot.active {
    background-color: #717171;
}

/* Basic formatting for testimonials */
.gengold-testimonial-content p {
    margin: 0;
    padding: 0;
}
