/**
 * PCM Quote Builder Styles
 * استایل‌های نقل قول‌های حرفه‌ای
 */

/* استایل پایه نقل قول */
.pcm-quote {
    margin: 25px 0;
    padding: 20px 25px;
    font-size: 1.1em;
    line-height: 1.7;
    position: relative;
    clear: both;
    transition: all 0.3s ease;
}

.pcm-quote-content {
    margin-bottom: 15px;
    font-style: italic;
}

.pcm-quote-author {
    font-style: normal;
    font-size: 0.9em;
    color: #666;
    display: block;
    margin-top: 10px;
}

.pcm-quote-author cite {
    font-weight: 600;
    color: #333;
    font-style: normal;
}

.pcm-quote-author-title {
    display: block;
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
}

.pcm-quote-author-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pcm-quote-author-link:hover {
    color: #2271b1;
}

/* Style 1: Classic */
.pcm-quote-style-classic {
    border-left: 4px solid #2271b1;
    background: #f8f9fa;
    padding-left: 25px;
}

/* Style 2: Modern */
.pcm-quote-style-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pcm-quote-style-modern .pcm-quote-author {
    color: rgba(255, 255, 255, 0.9);
}

.pcm-quote-style-modern .pcm-quote-author cite {
    color: white;
}

/* Style 3: Highlighted */
.pcm-quote-style-highlighted {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
}

/* Style 4: Bordered */
.pcm-quote-style-bordered {
    border: 3px solid #e0e0e0;
    border-left: 6px solid #00bcd4;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Style 5: Elegant */
.pcm-quote-style-elegant {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.pcm-quote-style-elegant::before {
    content: '\201C';
    font-size: 80px;
    color: rgba(34, 113, 177, 0.2);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pcm-quote-style-elegant .pcm-quote-content {
    margin-left: 40px;
}

/* Style 6: Testimonial */
.pcm-quote-style-testimonial {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4caf50;
}

.pcm-quote-style-testimonial .pcm-quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.pcm-quote-style-testimonial .pcm-quote-author cite {
    color: #4caf50;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .pcm-quote {
        padding: 15px 20px;
        font-size: 1em;
    }
    
    .pcm-quote-style-elegant::before {
        font-size: 60px;
    }
}