/* Styles pour les blockquotes avec avatar */
.blockquote-styled {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.blockquote-styled::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: #007bff;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.blockquote-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.blockquote-content {
    flex: 1;
    min-width: 0;
}

.blockquote-content blockquote {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #495057;
    position: relative;
}

.blockquote-content blockquote p {
    margin: 0 0 15px 0;
}

.blockquote-content blockquote p:last-child {
    margin-bottom: 0;
}

.blockquote-content blockquote em {
    font-style: italic;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .blockquote-styled {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .blockquote-avatar {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .blockquote-content {
        text-align: left;
    }
}

/* Animation au survol */
.blockquote-styled:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.blockquote-styled:hover .avatar-img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
