/* WP Local Experts — [expert_opinion] Shortcode Styles */

.wpeo-expert-opinion {
    background: linear-gradient(135deg, #f8fffe 0%, #f0faf7 100%);
    border-left: 4px solid #2ecc71;
    border-radius: 8px;
    padding: 24px;
    margin: 28px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

/* Header: photo + info */
.wpeo-expert-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

/* Expert photo */
.wpeo-expert-photo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Expert info block */
.wpeo-expert-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Badge */
.wpeo-expert-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #e74c3c);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 12px;
    width: fit-content;
    line-height: 1.4;
}

/* Expert name */
.wpeo-expert-name {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin-top: 4px;
}

/* Expert title/experience */
.wpeo-expert-title {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.3;
}

/* Quote block */
.wpeo-expert-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.wpeo-expert-quote p {
    margin: 0 0 10px 0;
}

.wpeo-expert-quote p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .wpeo-expert-opinion {
        padding: 16px;
    }

    .wpeo-expert-header {
        gap: 12px;
    }

    .wpeo-expert-photo img {
        width: 50px;
        height: 50px;
    }

    .wpeo-expert-name {
        font-size: 14px;
    }

    .wpeo-expert-title {
        font-size: 12px;
    }

    .wpeo-expert-quote {
        font-size: 14px;
        padding: 12px 14px;
    }
}
