/* Blog Testimonial Block (ohne Avatar) */
.blog-testimonial {
    position: relative;
}

.blog-testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #37556b 0%, #4a6b7c 100%);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(55, 85, 107, 0.2);
}

.blog-testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
}

.blog-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
}

.blog-testimonial-stars i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-testimonial-stars i.filled {
    color: #ffc107;
}

.blog-testimonial-text {
    font-size: 22px;
    font-weight: 400;
    color: white;
    line-height: 1.7;
    margin: 0 0 32px 0;
    font-style: italic;
    position: relative;
}

.blog-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-testimonial-info {
    text-align: center;
}

.blog-testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.blog-testimonial-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-testimonial-card {
        padding: 40px 30px;
    }

    .blog-testimonial-quote-icon {
        position: static;
        margin-bottom: 20px;
        font-size: 32px;
        color: rgba(255, 255, 255, 0.2);
    }

    .blog-testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .blog-testimonial-card {
        padding: 32px 24px;
    }

    .blog-testimonial-text {
        font-size: 16px;
    }

    .blog-testimonial-name {
        font-size: 16px;
    }
}
