.wp-block-group testimonials {
    padding-block: 5em;
}

.testimonial-slider-wrapper {
    position: relative;
    margin: 0 auto;
}

.testimonial-slider-wrapper .section-title {
    text-align: center;
    font-size: 48px;
    color: #d4a520;
    margin-bottom: 50px;
    font-weight: normal;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-slider-container {
    position: relative;
    background: white;
    /* border: 3px solid #d4a520; */
    padding: 1em;
    min-height: 300px;
    overflow: hidden;
}

.wp-block-group__inner-container {
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.wp-block-pullquote {
    flex: 0 0 100%;
    width: 100%;
    padding: 1em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.wp-block-pullquote.active {
    opacity: 1;
}

.wp-block-pullquote blockquote {
    text-align: center;
    border: none;
    padding: 0;
    margin: 0;
}

.wp-block-pullquote p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
    font-family: Georgia, serif;
    font-style: normal;
}

.wp-block-pullquote p > mark {
    display: block;
    margin-top: 1em;
}

.wp-block-pullquote cite {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    display: block;
    margin-top: 0;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.testimonial-rating .star {
    color: #d4a520;
    font-size: 1rem;
}

.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #d4a520;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px;
    z-index: 10;
    font-weight: 300;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.slider-nav-arrow:hover {
    transform: translateY(-50%) scale(1.2);
    color: #b8921b;
}

.slider-nav-arrow.prev {
    left: 0;
}

.slider-nav-arrow.next {
    right: 0;
}

.slider-navigation-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin-bottom: 2em;
}

.slider-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-nav-dot:hover {
    background: #d4a520;
    transform: scale(1.2);
}

.slider-nav-dot.active {
    background: #d4a520;
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .wp-block-pullquote {
        padding-inline: 2em;
    }

    .wp-block-pullquote p {
        font-size: 1.15rem;
    }
}